version bump

This commit is contained in:
Jude Nelson
2018-10-16 16:50:51 -04:00
parent 677adf3107
commit 0db25efda2
3 changed files with 4 additions and 4 deletions

View File

@@ -236,7 +236,7 @@ To check that your API endpoint is up, you can ping it with:
```
$ curl http://localhost:6270/v1/ping
{"status": "alive", "version": "19.0.0.0"}
{"status": "alive", "version": "19.0.1.0"}
```
You can confirm that your API endpoint can contact the `blockstack-core` daemon
@@ -272,7 +272,7 @@ $ blockstack-core --debug start --foreground
## Developer Resources
**v19.0.0.0** is the current stable release of Blockstack Core. It available on the `master` branch.
**v19.0.1.0** is the current stable release of Blockstack Core. It available on the `master` branch.
The next release is being built on the [develop](https://github.com/blockstack/blockstack-core/tree/develop). Please submit all
pull requests to the `develop` branch.

View File

@@ -1,5 +1,5 @@
# this is the only place where version should be updated
__version_major__ = '19'
__version_minor__ = '0'
__version_patch__ = '0'
__version_patch__ = '1'
__version__ = '{}.{}.{}.0'.format(__version_major__, __version_minor__, __version_patch__)

View File

@@ -1 +1 @@
__version__='0.19.0.0'
__version__='19.0.1.0'