diff --git a/CHANGELOG.md b/CHANGELOG.md index aea2dc24..d1e46be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [v1.6.0] - 2020-11-04 ### Added - **Support client certificates** through config (#112) - `ansi` config setting, to disable ANSI colors in pages (#79, #86) diff --git a/README.md b/README.md index 632a9595..cea0ac07 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Features in *italics* are in the master branch, but not in the latest release. - Disabled by default, enable in config - [x] Proxying - Schemes like Gopher or HTTP can be proxied through a Gemini server -- [x] *Client certificate support* +- [x] Client certificate support - [ ] Full client certificate UX within the client - Create transient and permanent certs within the client, per domain - Manage and browse them @@ -144,7 +144,6 @@ On Windows, the file is in `%APPDATA%\amfora\config.toml`, which usually expands ## Known Bugs - Pasting on Windows is truncated, the full paste content won't be added. ([#43](https://github.com/makeworld-the-better-one/amfora/issues/43)) -- ANSI codes aren't displaying properly ([#59](https://github.com/makeworld-the-better-one/amfora/issues/59)) You can also check out [all the issues with the bug label](https://github.com/makeworld-the-better-one/amfora/issues?q=is%3Aopen+is%3Aissue+label%3Abug). diff --git a/THANKS.md b/THANKS.md new file mode 100644 index 00000000..0e093f49 --- /dev/null +++ b/THANKS.md @@ -0,0 +1,13 @@ +# THANKS + +Thank you to the following contributors, who have helped make Amfora great. FOSS projects are a community effort, and we would be worse off without you. + +- Sotiris Papatheodorou (@sotpapathe) +- Chloe Kudryavtsev (@CosmicToast) +- Adrian Hesketh (@a-h) +- Jansen Price (@sumpygump) +- Alex Wennerberg (@alexwennerberg) +- Timur Ismagilov (@bouncepaw) +- Matt Caroll (@ohiolab) +- Patryk Niedźwiedziński (@pniedzwiedzinski) +- Trevor Slocum (@tsclocum) \ No newline at end of file diff --git a/amfora.go b/amfora.go index 80d61150..8c58a73a 100644 --- a/amfora.go +++ b/amfora.go @@ -9,7 +9,7 @@ import ( ) var ( - version = "1.5.0" + version = "v1.6.0" commit = "unknown" builtBy = "unknown" )