Skip to content

Commit

Permalink
Prepare v0.13.0 (#118)
Browse files Browse the repository at this point in the history
* update changes

* Bump version: "0.12.0" → 0.13.0
  • Loading branch information
cehbrecht authored Nov 30, 2023
1 parent aa75f3d commit c3b50bb
Show file tree
Hide file tree
Showing 8 changed files with 234 additions and 94 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"project_repo_name": "emu",
"project_readthedocs_name": "emu",
"project_short_description": "WPS processes for testing and demos.",
"version": "0.12.0",
"version": "0.13.0",
"open_source_license": "Apache Software License 2.0",
"http_port": "5000",
"use_pytest": "y",
Expand Down
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
Changes
*******

0.13.0 (unreleased)
0.13.0 (2023-11-30)
===================

Changes:

* Fixed RTD docs build.
* Updated via cruft from cookiecutter.
* Updated PyWPS >=4.5.2,<4.7
* Added GitHub CI (#110).
* Added Geospatial process.
* Added a new recipe for installing Emu with GIS libraries (`pip install eum[gis]`).
* Added example geospatial data (raster image courtesy of USGS: `Mars MGS MOLA DEM 463m v2`).
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# vim:set ft=dockerfile:
FROM continuumio/miniconda3
MAINTAINER https://github.com/bird-house/emu
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.12.0"
LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.13.0"

# Update Debian system
RUN apt-get update && apt-get install -y \
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.12.0"
version = "0.13.0"
# The full version, including alpha/beta/rc tags.
release = "0.12.0"
release = "0.13.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion emu/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__author__ = "Carsten Ehbrecht"
__email__ = "[email protected]"
__version__ = "0.12.0"
__version__ = "0.13.0"
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.0
current_version = 0.13.0
commit = True
tag = True

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

[tool:pytest]
addopts =
addopts =
--color=yes
--strict
--tb=native
python_files = test_*.py
markers =
markers =
online: mark test to need internet connection
slow: mark test to be slow
flaky: mark test to be flaky
Expand All @@ -46,5 +46,5 @@ exclude =
src,

[aliases]
# Define setup.py command aliases here
test = pytest

84 changes: 0 additions & 84 deletions spec-file.txt

This file was deleted.

Loading

0 comments on commit c3b50bb

Please sign in to comment.