Skip to content

Commit c3b50bb

Browse files
authored
Prepare v0.13.0 (#118)
* update changes * Bump version: "0.12.0" → 0.13.0
1 parent aa75f3d commit c3b50bb

File tree

8 files changed

+234
-94
lines changed

8 files changed

+234
-94
lines changed

.cruft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"project_repo_name": "emu",
2525
"project_readthedocs_name": "emu",
2626
"project_short_description": "WPS processes for testing and demos.",
27-
"version": "0.12.0",
27+
"version": "0.13.0",
2828
"open_source_license": "Apache Software License 2.0",
2929
"http_port": "5000",
3030
"use_pytest": "y",

CHANGES.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
Changes
22
*******
33

4-
0.13.0 (unreleased)
4+
0.13.0 (2023-11-30)
55
===================
66

77
Changes:
88

9+
* Fixed RTD docs build.
10+
* Updated via cruft from cookiecutter.
11+
* Updated PyWPS >=4.5.2,<4.7
12+
* Added GitHub CI (#110).
913
* Added Geospatial process.
1014
* Added a new recipe for installing Emu with GIS libraries (`pip install eum[gis]`).
1115
* Added example geospatial data (raster image courtesy of USGS: `Mars MGS MOLA DEM 463m v2`).

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vim:set ft=dockerfile:
22
FROM continuumio/miniconda3
33
MAINTAINER https://github.com/bird-house/emu
4-
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.12.0"
4+
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.13.0"
55

66
# Update Debian system
77
RUN apt-get update && apt-get install -y \

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
# the built documents.
120120
#
121121
# The short X.Y version.
122-
version = "0.12.0"
122+
version = "0.13.0"
123123
# The full version, including alpha/beta/rc tags.
124-
release = "0.12.0"
124+
release = "0.13.0"
125125

126126
# The language for content autogenerated by Sphinx. Refer to documentation
127127
# for a list of supported languages.

emu/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
__author__ = "Carsten Ehbrecht"
88
__email__ = "ehbrecht@dkrz.de"
9-
__version__ = "0.12.0"
9+
__version__ = "0.13.0"

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.12.0
2+
current_version = 0.13.0
33
commit = True
44
tag = True
55

@@ -23,12 +23,12 @@ search = "version": "{current_version}",
2323
replace = "version": "{new_version}",
2424

2525
[tool:pytest]
26-
addopts =
26+
addopts =
2727
--color=yes
2828
--strict
2929
--tb=native
3030
python_files = test_*.py
31-
markers =
31+
markers =
3232
online: mark test to need internet connection
3333
slow: mark test to be slow
3434
flaky: mark test to be flaky
@@ -46,5 +46,5 @@ exclude =
4646
src,
4747

4848
[aliases]
49-
# Define setup.py command aliases here
5049
test = pytest
50+

spec-file.txt

Lines changed: 0 additions & 84 deletions
This file was deleted.

0 commit comments

Comments
 (0)