Skip to content

Commit 1536919

Browse files
authored
Prepare release of v0.2 (#233)
* Increment version to 0.2 * [docs] Remove explicit version Gramps.js version in deployment example * Adapt readme
1 parent eae0ac3 commit 1536919

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Gramps Web API
22

3-
This project provides a RESTful web API to query (and, in the future also manipulate) a [Gramps](https://gramps-project.org) family tree database. It can serve e.g. as backend for a web app.
4-
3+
This project provides a RESTful web API to query and manipulate a [Gramps](https://gramps-project.org) family tree database. It can serve e.g. as backend for a web app.
54

65
## API documentation
76

docs/Deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,6 @@ On first run, it will build the full-text search index of the API.
188188
189189
If you want to add the [Gramps.js](https://github.com/DavidMStraub/Gramps.js) web frontend to your installation, simply add
190190
```yaml
191-
- GRAMPSJS_VERSION=v0.1.1
191+
- GRAMPSJS_VERSION=v0.x.y
192192
```
193-
(or any other released version) to the `environment` block in the `gramps_webapi` service section of `docker-compose.yml`.
193+
to the `environment` block in the `gramps_webapi` service section of `docker-compose.yml`, where `v0.x.y` should be replaced by the most recent Gramps.js version number (see [releases](https://github.com/DavidMStraub/Gramps.js/releases)).

gramps_webapi/_version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
#
1919

20-
__version__ = "0.2-dev.1"
20+
# make sure to match this version with the one in apispec.yaml
21+
__version__ = "0.2"

gramps_webapi/data/apispec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ info:
88
99
1010
* More about Gramps and the numerous features it provides for genealogists can be found at https://gramps-project.org
11-
version: "0.2-dev.1"
11+
version: "0.2" # make sure to match this version with the one in _version.py
1212
license:
1313
name: "GNU Affero General Public License v3.0"
1414
url: "http://www.gnu.org/licenses/agpl-3.0.html"

0 commit comments

Comments
 (0)