Skip to content

Commit

Permalink
Stamp 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Euler Taveira committed Dec 24, 2017
1 parent bc07f17 commit 98cbfb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ UNIX based Operating Systems
Before installing **pgquarrel**, you should have PostgreSQL 9.0+ installed (including the header files). If PostgreSQL is not in your search path add -DCMAKE_PREFIX_PATH=/path/to/pgsql to the cmake command.

```
$ tar -zxf pgquarrel-0.2.0.tgz
$ cd pgquarrel-0.2.0
$ tar -zxf pgquarrel-0.3.0.tgz
$ cd pgquarrel-0.3.0
$ cmake .
$ make
```

Windows
-------

You should have CMake 2.8.11+ installed and MS Visual Studio (tested with 2017). Open CMake Gui. If PostgreSQL is not in your path add an entry CMAKE_PREFIX_PATH (e.g. C:/Program Files/PostgreSQL/9.6). Change CMAKE_INSTALL_PREFIX if you want to install in another directory. Click on 'Configure' and then 'Generate'. Open MS Visual Studio project (path is specified in CMake Gui), right-click on ALL_BUILD and 'Compile'. After that right-click on INSTALL and 'Deploy'.
You should have CMake 2.8.11+ installed and MS Visual Studio (tested with 2017). Open CMake Gui. If PostgreSQL is not in your path add an entry CMAKE_PREFIX_PATH (e.g. C:/Program Files/PostgreSQL/10). Change CMAKE_INSTALL_PREFIX if you want to install in another directory. Click on 'Configure' and then 'Generate'. Open MS Visual Studio project (path is specified in CMake Gui), right-click on ALL_BUILD and 'Compile'. After that right-click on INSTALL and 'Deploy'.

Features
========
Expand Down Expand Up @@ -255,9 +255,9 @@ Tests

```
$ # adjust test/run-test.sh
$ cd pgquarrel-0.2.0/test
$ # test using 9.6 on both clusters
$ ./run-test.sh 96 96 init
$ cd pgquarrel-0.3.0/test
$ # test using 10 on both clusters
$ ./run-test.sh 10 10 init
```

License
Expand Down
2 changes: 1 addition & 1 deletion src/quarrel.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "common.h"

#define PGQ_NAME "pgquarrel"
#define PGQ_VERSION "0.2.0"
#define PGQ_VERSION "0.3.0"
#define PGQ_SUPPORTED 90000 /* first supported version */
#define PGQ_SUPPORTED_STR "9.0.0"

Expand Down

0 comments on commit 98cbfb4

Please sign in to comment.