Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Bump version: 0.1.0.dev → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nolte committed Apr 7, 2019
1 parent e141f15 commit 4462c5c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0.dev
current_version = 0.1.0
commit = false
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand All @@ -10,6 +10,7 @@ serialize =
[bumpversion:file:mcworldmanager/__init__.py]

[bumpversion:file:docs/usage/container_usage.rst]

[bumpversion:file:docs/usage/docker_call.txt]

[bumpversion:file:setup.py]
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/container_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For easy and quickly usage you can use the Dockerfile from `Dockerhub <https://h

.. code:: bash
docker pull nolte/minecraft-world-manager:0.1.0.dev
docker pull nolte/minecraft-world-manager:0.1.0
For wrapping the tool, and checkout to your local FS it is required that you define some additional :ref:`usage-container-run-parameters`.

Expand Down
2 changes: 1 addition & 1 deletion docs/usage/docker_call.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ docker run -it \
--user=${UID}:$(id -g $(whoami)) \
-w /tmp/worlds \
-v /tmp/worlds:/tmp/worlds \
nolte/minecraft-world-manager:0.1.0.dev -v worlds /tmp/worlds
nolte/minecraft-world-manager:0.1.0 -v worlds /tmp/worlds
2 changes: 1 addition & 1 deletion mcworldmanager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""Top-level package for project manager."""

__author__ = """nolte"""
__version__ = "0.1.0.dev"
__version__ = "0.1.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/nolte/minecraft-world-manager",
version="0.1.0.dev",
version="0.1.0",
zip_safe=False,
include_package_data=True,
)

0 comments on commit 4462c5c

Please sign in to comment.