Skip to content

Commit

Permalink
Merge pull request #138 from Scalingo/release/1.2.1
Browse files Browse the repository at this point in the history
Bump v1.2.1
  • Loading branch information
EtienneM committed Dec 27, 2023
2 parents 04b1354 + f0ba129 commit 6fa7059
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
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).

0 comments on commit 6fa7059

Please sign in to comment.