Skip to content

Commit

Permalink
Release 0.10.0 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed Jul 19, 2022
1 parent b738402 commit 7ab26a2
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 5 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
paths-ignore:
- '**.md'
- 'LICENSE'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
Expand All @@ -28,9 +30,7 @@ jobs:
build:
name: Build Client
runs-on: ubuntu-20.04
if:
github.event.pull_request.head.repo.full_name == 'nginxinc/nginx-plus-go-client' ||
github.event_name == 'push' || github.event_name == 'schedule'
if: ${{ github.event.repository.fork == false }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -69,3 +69,23 @@ jobs:
run: make test
env:
NGINX_PLUS_VERSION: nightly

release:
name: Release
runs-on: ubuntu-20.04
if: ${{ startsWith(github.ref, 'refs/tags/') }}
steps:
- name: Publish Release Notes
uses: release-drafter/release-drafter@v5
with:
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_COMMUNITY }}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
*.key

# Visual Studio Code settings
.vscode
.vscode

dist
10 changes: 10 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
builds:
- skip: true

changelog:
skip: true

announce:
slack:
enabled: true
channel: '#general'
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.10.0 (Jul 19, 2022)

An automatically generated list of changes can be found on GitHub at: [0.10.0 Release](https://github.com/nginxinc/nginx-plus-go-client/releases/tag/v0.10.0)

## 0.9.0 (Sep 28, 2021)

An automatically generated list of changes can be found on GitHub at: [0.9.0 Release](https://github.com/nginxinc/nginx-plus-go-client/releases/tag/v0.9.0)

## 0.8.0 (Nov 26, 2020)

An automatically generated list of changes can be found on GitHub at: [0.8.0 Release](https://github.com/nginxinc/nginx-plus-go-client/releases/tag/v0.8.0)

## 0.7.0 (Jul 10, 2020)
FEATURES:
* [38](https://github.com/nginxinc/nginx-plus-go-client/pull/38): *Support for /slabs API endpoint*. The client now supports retrieving shared memory zone usage info.
Expand Down Expand Up @@ -42,7 +54,7 @@ CHANGES:

## 0.3 (May 29, 2019)
FEATURES:
* [20](https://github.com/nginxinc/nginx-plus-go-client/pull/20): *Support for stream zone sync metrics*. The client `GetStats` method now additionally returns stream zone sync metrics.
* [20](https://github.com/nginxinc/nginx-plus-go-client/pull/20): *Support for stream zone sync metrics*. The client `GetStats` method now additionally returns stream zone sync metrics.
* [13](https://github.com/nginxinc/nginx-plus-go-client/pull/13): *Support for key-value endpoints*. The client implements a set of methods to create/modify/delete key-val pairs for both http and stream contexts.
* [12](https://github.com/nginxinc/nginx-plus-go-client/pull/12) *Support for NGINX status info*. The client `GetStats` method now additionally returns NGINX status metrics. Thanks to [jthurman42](https://github.com/jthurman42).

Expand Down

0 comments on commit 7ab26a2

Please sign in to comment.