Skip to content

Commit

Permalink
v8.0.1 release notes
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Hill <[email protected]>
  • Loading branch information
gregdhill committed Mar 9, 2020
1 parent 1385b20 commit 4b2e9b9
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 16 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,25 @@ jobs:
if: success()

js:
name: npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- uses: actions/checkout@v1
- run: npm install -g npm-cli-login
- name: Publish
- run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10}
- name: publish
env:
NPM_EMAIL: ${{ secrets.NPM_EMAIL }}
NPM_USER: ${{ secrets.NPM_USER }}
NPM_PASS: ${{ secrets.NPM_PASS }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
git config --global user.name "${NPM_USER}"
git config --global user.email "${NPM_EMAIL}"
npm-cli-login
npm version from-git
git config --global user.email "${GITHUB_ACTOR}"
git config --global user.name "${GITHUB_ACTOR}"
cd hoard-js
npm install
npm run build
npm version $RELEASE_VERSION
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
npm publish --access public .
docker:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# [Monax Hoard](https://github.com/monax/hoard) Changelog
## [8.0.1] - 2020-03-09
### Fixed
- NPM publish via auth token


## [8.0.0] - 2020-02-24
### Changed
- Service now encrypts per chunk of plaintext
Expand Down Expand Up @@ -167,6 +172,7 @@ This is the first Hoard open source release and includes:
- Hoar-Daemon hoard
- Hoar-Control hoarctl CLI

[8.0.1]: https://github.com/monax/hoard/compare/v8.0.0...v8.0.1
[8.0.0]: https://github.com/monax/hoard/compare/v7.2.0...v8.0.0
[7.2.0]: https://github.com/monax/hoard/compare/v7.1.0...v7.2.0
[7.1.0]: https://github.com/monax/hoard/compare/v7.0.0...v7.1.0
Expand Down
8 changes: 2 additions & 6 deletions NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
### Changed
- Service now encrypts per chunk of plaintext
- Grants (v2) contain an array of references

### Removed
- Document service - metadata now in header
### Fixed
- NPM publish via auth token

5 changes: 5 additions & 0 deletions project/history.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ func FullVersion() string {
// release tagging script: ./scripts/tag_release.sh
var History relic.ImmutableHistory = relic.NewHistory("Monax Hoard", "https://github.com/monax/hoard").
MustDeclareReleases(
"8.0.1 - 2020-03-09",
`### Fixed
- NPM publish via auth token
`,

"8.0.0 - 2020-02-24",
`### Changed
- Service now encrypts per chunk of plaintext
Expand Down

0 comments on commit 4b2e9b9

Please sign in to comment.