Skip to content

Commit

Permalink
chore: release v1.7.0 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilianc committed May 9, 2024
1 parent e1e20d0 commit 6d8718e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@


<a name="v1.7.0"></a>
## [v1.7.0](https://github.com/kilianc/pretender/compare/v1.6.1...v1.7.0) <kbd>2024/04/28</kbd>


✨ add the `—no-color` flag ([#64](https://github.com/kilianc/pretender/issues/64))<br>

🧹 fix license typos ([#73](https://github.com/kilianc/pretender/issues/73))<br>🧹 suppress git output from `make changelog` ([#70](https://github.com/kilianc/pretender/issues/70))<br>🧹 rearrange code for readibility ([#71](https://github.com/kilianc/pretender/issues/71))<br>🧹 sync git tags before generating the changelog ([#69](https://github.com/kilianc/pretender/issues/69))<br>🧹 beautify the changelog ([#68](https://github.com/kilianc/pretender/issues/68))<br>🧹 use stderr for version checker ([#66](https://github.com/kilianc/pretender/issues/66))<br>🧹 use better names for gha workflows ([#67](https://github.com/kilianc/pretender/issues/67))<br>🧹 add `commit-check` make target ([#65](https://github.com/kilianc/pretender/issues/65))<br>🧹 add missing changelog files ([#63](https://github.com/kilianc/pretender/issues/63))<br>🧹 improve tests for nil values ([#62](https://github.com/kilianc/pretender/issues/62))<br>🧹 remove unnecessary error handling ([#61](https://github.com/kilianc/pretender/issues/61))<br>


<a name="v1.6.1"></a>
## [v1.6.1](https://github.com/kilianc/pretender/compare/v1.5.1...v1.6.1) <kbd>2024/04/27</kbd>

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
██████╔╝██████╔╝█████╗ ██║ █████╗ ██╔██╗ ██║██║ ██║█████╗ ██████╔╝
██╔═══╝ ██╔══██╗██╔══╝ ██║ ██╔══╝ ██║╚██╗██║██║ ██║██╔══╝ ██╔══██╗
██║ ██║ ██║███████╗ ██║ ███████╗██║ ╚████║██████╔╝███████╗██║ ██║
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝╚═════╝ ╚══════╝╚═╝ ╚═╝ v1.6.1
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═══╝╚═════╝ ╚══════╝╚═╝ ╚═╝ v1.7.0

• starting server on port 8080
• using responses file: examples/example.json
Expand All @@ -37,7 +37,7 @@
With `go install`

```sh
go install github.com/kilianc/pretender/cmd/pretender@v1.6.1
go install github.com/kilianc/pretender/cmd/pretender@v1.7.0
```

With `docker`
Expand All @@ -46,14 +46,14 @@ With `docker`
docker run --rm -it \
-p 8080:8080 \
-v $(pwd)/examples:/examples \
kilianciuffolo/pretender:v1.6.1 --responses /examples/example.json
kilianciuffolo/pretender:v1.7.0 --responses /examples/example.json
```

With `curl`

```sh
# change the os (linux or darwin) and arch (amd64 or arm64) based on your machine
curl -O https://github.com/kilianc/pretender/releases/download/v1.6.1/pretender-darwin-arm64.tar.gz
curl -O https://github.com/kilianc/pretender/releases/download/v1.7.0/pretender-darwin-arm64.tar.gz
tar -xzf pretender-darwin-arm64.tar.gz
./pretender --version
```
Expand Down
2 changes: 1 addition & 1 deletion cmd/pretender/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"golang.org/x/term"
)

const version = "v1.6.1"
const version = "v1.7.0"

var (
isTTY = term.IsTerminal(int(os.Stdout.Fd()))
Expand Down

0 comments on commit 6d8718e

Please sign in to comment.