Skip to content

Commit

Permalink
Release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfmpe committed Apr 27, 2021
1 parent 170dd54 commit 3837765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GIT_DESCRIBE ?= $(shell git describe --tags --abbrev=8 --always --long --dirty 2
VERSION_TAG ?= $(shell echo "$(GIT_DESCRIBE)" | cut -f1 -d-)
APPVERSION_M=0
APPVERSION_N=5
APPVERSION_P=0
APPVERSION_P=1
APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)

# Only warn about version tags if specified/inferred
Expand Down
2 changes: 1 addition & 1 deletion tests/basic-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ describe("Basic Tests", () => {
it('can fetch the version of the app', async function () {
const cfg = await this.ava.getAppConfiguration();
expect(cfg).to.be.a('object');
expect(cfg).to.have.property("version", "0.5.0");
expect(cfg).to.have.property("version", "0.5.1");
expect(cfg).to.have.property("name", "Avalanche");
});
it('returns the expected wallet ID', async function () {
Expand Down

0 comments on commit 3837765

Please sign in to comment.