Skip to content

Commit 0df97c7

Browse files
author
Silas Davis
authored
Merge pull request #43 from gregdhill/2.0.0
bump releases + add notes
2 parents 87cd095 + b58cdcd commit 0df97c7

File tree

2 files changed

+34
-22
lines changed

2 files changed

+34
-22
lines changed

hoard-js/package.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "hoard-client",
3-
"version": "1.1.0",
2+
"name": "@monax/hoard-client",
3+
"version": "1.5.0",
44
"description": "Hoard client library",
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "https://code.monax.io/platform/hoard"
11+
"url": "git+https://github.com/monax/hoard.git"
1212
},
1313
"dependencies": {
1414
"grpc": "1.18.0",
@@ -23,5 +23,10 @@
2323
"store"
2424
],
2525
"author": "Silas Davis",
26-
"license": "Apache-2.0"
26+
"license": "Apache-2.0",
27+
"bugs": {
28+
"url": "https://github.com/monax/hoard/issues"
29+
},
30+
"homepage": "https://github.com/monax/hoard#readme",
31+
"devDependencies": {}
2732
}

project/history.go

+25-18
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
// Can be used to set the commit hash version of the binary at build time with:
8-
// `go build -ldflags "-X github.com/hyperledger/burrow/project.commit=$(git rev-parse --short HEAD)" ./cmd/burrow`
8+
// `go build -ldflags "-X github.com/monax/hoard/project.commit=$(git rev-parse --short HEAD)" ./cmd/hoard`
99

1010
var commit = ""
1111
var date = ""
@@ -29,15 +29,23 @@ func FullVersion() string {
2929
// To cut a new release add a release to the front of this slice then run the
3030
// release tagging script: ./scripts/tag_release.sh
3131
var History relic.ImmutableHistory = relic.NewHistory("Monax Hoard", "https://github.com/monax/hoard").
32-
MustDeclareReleases("",
33-
`Changed:
34-
- Switched to upper case field names in protobuf
35-
- Used gogoproto for types
36-
37-
Added:
38-
- Grant interface and GRPC service
39-
- Symmetric AES-GCM-based grants
40-
`,
32+
MustDeclareReleases(
33+
"2.0.0 - 2019-02-21",
34+
`### Changed
35+
- [PROTO] Upper case field names in protobuf
36+
- [PROTO] Used gogoproto for types
37+
- [STORE] Go-cloud project for s3 store backend
38+
- [STORE] Minimized IPFS configuration
39+
40+
### Added
41+
- [STORE] Initial support for Azure backend thanks to go-cloud
42+
- [GRANTS] Interface and GRPC service
43+
- [GRANTS] Symmetric AES-GCM-based grants
44+
- [GRANTS] Asymmetric OpenPGP support
45+
- [GRANTS] Go-client (hoarctl) tooling
46+
- [NODEJS] Support for using the grant service + examples
47+
- [STORE] IPFS integration test`,
48+
4149
"1.1.5 - 2018-10-17",
4250
`Scripted integration tests, better makefile and ci configs, gcs creds read from env var.`,
4351

@@ -65,29 +73,28 @@ Added:
6573
"1.0.0",
6674
`Minor breaking change in that 'hoard init' becomes 'hoard config':
6775
- 'hoard config' adds some niceties for printing JSON config for --env configuration source
68-
- Added S3 'remote' credentials provider enabling credentials to be sourced from EC2 instance roles (note since [RemoteCredProvider()](https://github.com/aws/aws-sdk-go/blob/5a2026bfb28e86839f9fcc46523850319399006c/aws/defaults/defaults.go#L108) is used it also support ECS configuration via AWS_CONTAINER_CREDENTIALS_RELATIVE_URI and AWS_CONTAINER_CREDENTIALS_FULL_URI)
69-
`,
76+
- Added S3 'remote' credentials provider enabling credentials to be sourced from EC2 instance roles (note since [RemoteCredProvider()](https://github.com/aws/aws-sdk-go/blob/5a2026bfb28e86839f9fcc46523850319399006c/aws/defaults/defaults.go#L108) is used it also support ECS configuration via AWS_CONTAINER_CREDENTIALS_RELATIVE_URI and AWS_CONTAINER_CREDENTIALS_FULL_URI)`,
77+
7078
"0.1.1",
7179
`Include hoarctl in Docker image`,
7280

7381
"0.1.0",
7482
`Release adding environment config and docker image
7583
- Adds --env flag to read JSON config from HOARD_JSON_CONFIG
7684
- Add --json and --toml flags to 'hoard init' to generate JSON optionally
77-
- Added alpine based docker image pushed on releases (that reads config from environment variable)
78-
`,
85+
- Added alpine based docker image pushed on releases (that reads config from environment variable)`,
86+
7987
"0.0.2",
8088
`Bug fix release for FileSystemStorage:
8189
- Switch to URL and filesystem compliant base64 alphabet so some addresses do not target non-existent directories
82-
- Create root directory for FileSystemStorage if it does not exist
83-
`,
90+
- Create root directory for FileSystemStorage if it does not exist`,
91+
8492
"0.0.1",
8593
`This is the first Hoard open source release and includes:
8694
- Deterministic encryption scheme
8795
- GRPC API for encryption, storage, and cleartext
8896
- Memory, Filesystem, and S3 storage backends
8997
- Configuration
9098
- Hoar-Daemon hoard
91-
- Hoar-Control hoarctl CLI
92-
`,
99+
- Hoar-Control hoarctl CLI`,
93100
)

0 commit comments

Comments
 (0)