diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-10-20 18:09:40 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-10-20 18:10:59 +0200 |
commit | de48dfb51890f9701ecc92d564e3ee54fae7574f (patch) | |
tree | bd4b02dbc426298d2ae6ff642da620021dcbec78 | |
parent | f6a8bfcdb31b3a42002e9d1c113bd547ffe5ef29 (diff) | |
download | feed2imap-go-de48dfb51890f9701ecc92d564e3ee54fae7574f.tar.gz feed2imap-go-de48dfb51890f9701ecc92d564e3ee54fae7574f.tar.bz2 feed2imap-go-de48dfb51890f9701ecc92d564e3ee54fae7574f.zip |
Prepare v1.2.0
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | pkg/version/version.go | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a77e0d0..3adbf45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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] + +## [1.2.0] - 2021-10-20 ### Added - Location of the cache can now be specified in the config.yml. Rationale: Easier way of dealing with multiple configurations, as each also requires a distinct cache. - [Issue #6](https://github.com/Necoro/feed2imap-go/issues/6): Support old-style configurations with imap targets on each feed. Restriction: Servers must be equal over all connection strings! @@ -109,7 +111,8 @@ This resulted in duplicate entries as soon as the feed contained (possibly older Initial release -[Unreleased]: https://github.com/Necoro/feed2imap-go/compare/v1.1.1...HEAD +[Unreleased]: https://github.com/Necoro/feed2imap-go/compare/v1.2.0...HEAD +[1.2.0]: https://github.com/Necoro/feed2imap-go/compare/v1.1.1...v1.2.0 [1.1.1]: https://github.com/Necoro/feed2imap-go/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/Necoro/feed2imap-go/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/Necoro/feed2imap-go/compare/v0.8.0...v1.0.0 @@ -68,7 +68,7 @@ Please open an issue if you are missing your platform. Clone the repository and, optionally, switch to the tag you want: ````bash git clone https://github.com/Necoro/feed2imap-go -git checkout v1.1.1 +git checkout v1.2.0 ```` The official way of building feed2imap-go is using [goreleaser](https://github.com/goreleaser/goreleaser): diff --git a/pkg/version/version.go b/pkg/version/version.go index 36f6384..eefebef 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -2,7 +2,7 @@ package version // this is set by the linker during build var ( - version = "1.1.1-post" + version = "1.2.0-post" commit = "" ) |