Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ParsiCoin committed Sep 12, 2019
1 parent 2eaa5e6 commit e1eb622
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ http://www.boost.org/

Alternatively, it may be possible to install them using a package manager.

To build, change to a directory where this file is located, and run `make'. The resulting executables can be found in build/release/src.
To build, change to a directory where this file is located, and run ```make```. The resulting executables can be found in build/release/src.

Advanced options:

Parallel build: run `make -j<number of threads>' instead of `make'.
Parallel build: run ```make -j<number of threads>``` instead of ```make```.

Debug build: run `make build-debug'.
Debug build: run ```make build-debug```.

Test suite: run `make test-release' to run tests in addition to building. Running `make test-debug' will do the same to the debug version.
Test suite: run ```make test-release``` to run tests in addition to building. Running ```make test-debug``` will do the same to the debug version.


On Windows:
Expand All @@ -41,7 +41,9 @@ http://www.boost.org/

To build, change to a directory where this file is located, and run this commands: (VisualStudio 2015)

```
mkdir build && cd build && cmake .. -G "Visual Studio 14 Win64" ..
```

open ParsiCoin.sln File on Visual Studio

Expand Down
4 changes: 2 additions & 2 deletions src/version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#define PROJECT_SITE "https://parsicoin.net"
#define PROJECT_COPYRIGHT "Copyright 2018-2019, ParsiCoin Developers"
#define APP_VER_MAJOR 3
#define APP_VER_MINOR 0
#define APP_VER_REV 2
#define APP_VER_MINOR 1
#define APP_VER_REV 0
#define BUILD_COMMIT_ID "Stable"
#define PROJECT_VERSION STR(APP_VER_MAJOR) "." STR(APP_VER_MINOR) "." STR(APP_VER_REV)
#define PROJECT_VERSION_BUILD_NO STR(APP_VER_BUILD)
Expand Down

0 comments on commit e1eb622

Please sign in to comment.