From d0f5b885ece0f7a2afda71b7295a63490bbb8a42 Mon Sep 17 00:00:00 2001 From: Benoit Quenaudon Date: Tue, 19 Dec 2023 17:29:52 +0000 Subject: [PATCH] Prepare for release 1.6.2. --- CHANGELOG.md | 11 +++++++++-- README.md | 6 +++--- RELEASING.md | 7 +++---- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3959c66b..80f69025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [1.6.2] - 2023-12-19 + +### Added + +- Add codable, equatable and sendable Swift declared type names (#103) + ## [1.6.1] - 2023-12-18 ### Fixed @@ -29,9 +35,10 @@ ### Remark -There are no changelog for versions 1.5.0 and before. +There are no changelog for versions 1.5.0 and before. -[Unreleased]: https://github.com/outfoxx/swiftpoet/compare/1.6.1...HEAD +[Unreleased]: https://github.com/outfoxx/swiftpoet/compare/1.6.2...HEAD +[1.6.2]: https://github.com/outfoxx/swiftpoet/releases/tag/1.6.2 [1.6.1]: https://github.com/outfoxx/swiftpoet/releases/tag/1.6.1 [1.6.0]: https://github.com/outfoxx/swiftpoet/releases/tag/1.6.0 [1.5.0]: https://github.com/outfoxx/swiftpoet/releases/tag/1.5.0 diff --git a/README.md b/README.md index d879bd3f..ee4aaef2 100644 --- a/README.md +++ b/README.md @@ -78,14 +78,14 @@ Download [the latest .jar][dl] or depend via Maven: io.outfoxx swiftpoet - 1.6.1 + 1.6.2 ``` or Gradle: ```groovy -implementation 'io.outfoxx:swiftpoet:1.6.1' +implementation 'io.outfoxx:swiftpoet:1.6.2' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. @@ -112,5 +112,5 @@ License [action]: https://github.com/outfoxx/swiftpoet/actions?query=branch%3Adevelop [dl]: https://search.maven.org/remote_content?g=io.outfoxx&a=swiftpoet&v=LATEST [snap]: https://oss.sonatype.org/content/repositories/snapshots/io/outfoxx/swiftpoet/ - [kdoc]: https://outfoxx.github.io/swiftpoet/1.6.1/swiftpoet/io.outfoxx.swiftpoet/ + [kdoc]: https://outfoxx.github.io/swiftpoet/1.6.2/swiftpoet/io.outfoxx.swiftpoet/ [javapoet]: https://github.com/square/javapoet/ diff --git a/RELEASING.md b/RELEASING.md index 3628d3c8..332251b5 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -16,9 +16,6 @@ Cutting a Release 3. Update versions: ``` - sed -i "" \ - "s/releaseVersion=.*/releaseVersion=$RELEASE_VERSION/g" \ - `find . -name "gradle.properties"` sed -i "" \ "s/'io.outfoxx:\([^\:]*\):[^']*'/'io.outfoxx:\1:$RELEASE_VERSION'/g" \ `find . -name "README.md"` @@ -33,16 +30,18 @@ Cutting a Release 4. Tag the release and push to GitHub. ``` + git checkout -b release.$RELEASE_VERSION git commit -am "Prepare for release $RELEASE_VERSION." git tag -a $RELEASE_VERSION -m "Version $RELEASE_VERSION" git push && git push --tags ``` -5. Wait for [GitHub Actions][github_actions] to start building the release. +5. Tag your buddies and merge when CI goes green. Once merged, CI will automatically release the artifacts. 6. Prepare for ongoing development and push to GitHub. ``` + git checkout -b dev.$NEXT_VERSION sed -i "" \ "s/releaseVersion=.*/releaseVersion=$NEXT_VERSION/g" \ `find . -name "gradle.properties"`