Skip to content

Commit

Permalink
bump version 1.1.0 -> 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
schlauerlauer committed Apr 29, 2024
1 parent 6ed8754 commit 7f752b9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
## [1.1.1](https://github.com/schlauerlauer/alertmanager-webhook-signal/releases/tag/1.1.1) - 2024-04-29

### Features

- Add styled formatting in signal

## [1.1.0](https://github.com/schlauerlauer/alertmanager-webhook-signal/releases/tag/1.1.0) - 2024-04-15

### Bug Fixes
Expand All @@ -8,9 +14,6 @@
### Features

- Optimized containerfile
- Replace gin gonic with net/http
- Add cliff changelog
- Customizable messages

## [1.0.1](https://github.com/schlauerlauer/alertmanager-webhook-signal/releases/tag/1.0.1) - 2023-12-04

Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := "1.1.0" # updated by bumpver
VERSION := "1.1.1" # updated by bumpver

default:
CONFIG_PATH=./custom-config.yaml air
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ It now supports alert webhooks from Grafana aswell, including a preview graph im
docker run -d --name alertmanager-signal \
-p 10000:10000 \
-v $(pwd)/config.yaml:/config.yaml \
docker.io/schlauerlauer/alertmanager-webhook-signal:1.1.0
docker.io/schlauerlauer/alertmanager-webhook-signal:1.1.1
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "1.1.0"
current_version = "1.1.1"
version_pattern = "MAJOR.MINOR.PATCH[-TAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion bumpver_hook.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
git cliff -c cliff.yaml --tag 1.1.0 -o CHANGELOG.md
git cliff -c cliff.yaml --tag 1.1.1 -o CHANGELOG.md
git add CHANGELOG.md
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/lmittmann/tint"
)

const appVersion = "1.1.0" // updated by bumpver
const appVersion = "1.1.1" // updated by bumpver

func main() {
slog.SetDefault(slog.New(
Expand Down

0 comments on commit 7f752b9

Please sign in to comment.