Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump v1.2.1 #138

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## To Be Released

## v1.2.1 - 2023-12-27

* chore(deps): various updates

## v1.2.0 - 2022-12-01

* Bump github.com/fsouza/go-dockerclient from 1.8.3 to 1.9.0
Expand Down
28 changes: 18 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Acadock Monitoring - Docker container monitoring v1.2.0
# Acadock Monitoring - Docker container monitoring v1.2.1

This webservice provides live data on Docker containers. It takes
data from the Linux kernel control groups and from the namespace of
Expand Down Expand Up @@ -90,22 +90,30 @@ Bump new version number in:
Commit, tag and create a new release:

```sh
version="1.2.1"

git switch --create release/${version}
git add CHANGELOG.md README.md
git commit -m "release: Bump v1.2.0"
git tag v1.2.0
git push origin master v1.2.0
hub release create v1.2.0
git commit -m "Bump v${version}"
git push --set-upstream origin release/${version}
gh pr create --reviewer=EtienneM --fill-first
```

The project is using [GoReleaser](https://goreleaser.com) to build its archives.

To build locally the archives, you can use the following command, it will
automatically use the version of the last tag created.
Once the pull request merged, you can tag the new release.

```sh
git tag v${version}
git push origin master v${version}
gh release create v${version} --generate-notes --prerelease
gh release view v${version} --web
```

Build locally the archives. You can use the following command, it will automatically use the version of the last tag created.

```sh
goreleaser release --skip-publish --skip-announce --skip-sign --rm-dist
```

Add the builds to the newly created release.
On the web interface, unset the pre-release checkbox, check the "Set as the latest release" checkbox, and upload the archives in the `dist` folder.

Last, update the default version installed in the [cookbook](https://github.com/Scalingo/cookbook-acadock).