Skip to content

Commit

Permalink
version bump v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Oct 23, 2023
1 parent d1c1255 commit 9177831
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/content/sdk/golang.md
Expand Up @@ -91,7 +91,7 @@ go run main.go

If you see a message like the following, then congratulations! You've successfully connected to Ensign!

```HEALTHY 0.11.0-beta.14 ([GIT HASH])```
```HEALTHY 0.12.0-beta.15 ([GIT HASH])```

### Make Some Data

Expand Down
2 changes: 1 addition & 1 deletion docs/content/sdk/python.md
Expand Up @@ -75,7 +75,7 @@ If you see a message like the following, then congratulations! You've successful

```
status: 1
version: 0.11.0-beta.14 ([GIT HASH])
version: 0.12.0-beta.15 ([GIT HASH])
uptime: seconds: 130150
nanos: 862300696
```
Expand Down
2 changes: 1 addition & 1 deletion pkg/ensign/api/v1beta1/deduplication_test.go
Expand Up @@ -603,7 +603,7 @@ func TestDuplicateReferencing(t *testing.T) {
PublisherId: "01HD1M0AVDVHPA4WA73MAA7NH7",
Ipaddr: "192.148.21.133",
ClientId: "data-ingestor-bravo",
UserAgent: "Go-Ensign v0.11.0",
UserAgent: "Go-Ensign v0.12.0",
}
}

Expand Down
4 changes: 2 additions & 2 deletions pkg/version.go
Expand Up @@ -5,10 +5,10 @@ import "fmt"
// Version component constants for the current build.
const (
VersionMajor = 0
VersionMinor = 11
VersionMinor = 12
VersionPatch = 0
VersionReleaseLevel = "beta"
VersionReleaseNumber = 14
VersionReleaseNumber = 15
)

// Set the GitVersion via -ldflags="-X 'github.com/rotationalio/ensign/pkg.GitVersion=$(git rev-parse --short HEAD)'"
Expand Down
2 changes: 1 addition & 1 deletion web/beacon-app/.env.template
@@ -1,5 +1,5 @@
# Displays the build version (tag) and git revision for debugging
REACT_APP_VERSION_NUMBER=v0.12.0-dev
REACT_APP_VERSION_NUMBER=v0.14.0-dev
REACT_APP_GIT_REVISION=

# Specifies connection information for the backend
Expand Down
4 changes: 2 additions & 2 deletions web/beacon-app/package.json
@@ -1,11 +1,11 @@
{
"name": "beacon-app",
"version": "0.11.0",
"version": "0.12.0",
"description": "User UI for Ensign.",
"main": "index.js",
"repository": "https://github.com/rotationalio/ensign",
"author": "Rotational Labs",
"license": "MIT",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"dev": "vite --port 3000",
Expand Down

0 comments on commit 9177831

Please sign in to comment.