Skip to content

Commit 0425bb3

Browse files
committed
Bumped version
1 parent 58d0d73 commit 0425bb3

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include setup.py README.rst LICENSE
1+
include setup.py README.rst LICENSE docs

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ Links
128128
License
129129
*******
130130

131-
This project is licensed under the MIT License - see the `LICENSE <LICENSE>`_ file for details.
131+
This project is licensed under the MIT License - see the `LICENSE <https://github.com/mikicz/arca/blob/master/LICENSE>`_ file for details.

arca/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
__all__ = ["Arca", "BaseBackend", "VenvBackend", "DockerBackend", "Result", "Task", "CurrentEnvironmentBackend",
99
"RequirementsStrategy", "VagrantBackend"]
10-
__version__ = "0.0.1"
10+
__version__ = "0.1.0a0"

docs/changes.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
Changes
22
=======
3+
4+
0.1.0a0 (2018-04-13)
5+
********************
6+
7+
Initial alfa release

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ def long_description():
2020

2121
setup(
2222
name="arca",
23-
version="0.0.4",
23+
version="0.1.0a0",
2424
author="Mikuláš Poul",
2525
author_email="[email protected]",
2626
description="A library for running Python functions (callables) from git repositories "
2727
"in various states of isolation with integrating caching.",
28-
# keywords=[""], # TODO
28+
keywords=["sandboxing", "git", "docker", "vagrant"],
2929
license="MIT",
3030
url="https://github.com/mikicz/arca",
3131
packages=find_packages(),
@@ -41,7 +41,7 @@ def long_description():
4141
"cached-property",
4242
],
4343
classifiers=[
44-
"Development Status :: 2 - Pre-Alpha", # TODO: update when ready
44+
"Development Status :: 3 - Alpha",
4545
"Intended Audience :: Developers",
4646
"License :: OSI Approved :: MIT License",
4747
"Programming Language :: Python",

0 commit comments

Comments
 (0)