From 16cb929392a6dd4b1ab14c5a61794601f9ef6e74 Mon Sep 17 00:00:00 2001 From: Jace Browning Date: Sun, 22 May 2016 18:53:34 -0400 Subject: [PATCH 1/2] Bump version to 1.0 --- CHANGELOG.md | 4 ++++ gitman/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 959ecdd3..2725b0c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Revision History +## 1.0 (2016/05/22) + +- Initial stable release. + ## 0.11 (2016/05/10) - Removed dependency on `sh` to support Cygwin/MinGW/etc. on Windows. diff --git a/gitman/__init__.py b/gitman/__init__.py index 4e4e8b17..1b1caba1 100644 --- a/gitman/__init__.py +++ b/gitman/__init__.py @@ -3,7 +3,7 @@ import sys __project__ = 'GitMan' -__version__ = '0.11' +__version__ = '1.0' CLI = 'gitman' PLUGIN = 'deps' From 70781b1d7bb4f3d08f9ef09fb6994571f5948877 Mon Sep 17 00:00:00 2001 From: Jace Browning Date: Sun, 22 May 2016 18:53:42 -0400 Subject: [PATCH 2/2] Require YORM 1.0 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 255402dc..3d0b0123 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -YORM ~= 0.8 +YORM ~= 1.0 diff --git a/setup.py b/setup.py index a090b9c9..5e482c0a 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ long_description=LONG_DESCRIPTION, license='MIT', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',