Skip to content

Commit

Permalink
Prepare for release 1.6.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
oldergod committed Dec 19, 2023
1 parent 4b9abcd commit d0f5b88
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ Download [the latest .jar][dl] or depend via Maven:
<dependency>
<groupId>io.outfoxx</groupId>
<artifactId>swiftpoet</artifactId>
<version>1.6.1</version>
<version>1.6.2</version>
</dependency>
```

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].
Expand All @@ -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/
7 changes: 3 additions & 4 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand All @@ -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"`
Expand Down

0 comments on commit d0f5b88

Please sign in to comment.