Skip to content

Commit db28724

Browse files
committed
ODI-3720 Update version to 2.0.1
1 parent b6f6fed commit db28724

File tree

8 files changed

+6
-15
lines changed

8 files changed

+6
-15
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ exclude .coverage
33
exclude .coveragerc
44
exclude .travis.yml
55
include VERSION
6-
include RELEASE
76
include LICENSE
87
include README.md
98
include setup.cfg

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ PROJECT=plugnpy
2626
# Project version
2727
VERSION=$(shell cat VERSION)
2828

29-
# Project release number (packaging build number)
30-
RELEASE=$(shell cat RELEASE)
31-
3229
# Name of RPM or DEB package
3330
PKGNAME=${VENDOR}-${PROJECT}
3431

@@ -71,9 +68,7 @@ all: help
7168
# Set the version from VERSION file
7269
version:
7370
sed -i "s/version:.*$$/version: $(VERSION)/" conda/meta.yaml
74-
sed -i "s/number:.*$$/number: $(RELEASE)/" conda/meta.yaml
7571
sed -i "s/__version__.*$$/__version__ = '$(VERSION)'/" plugnpy/__init__.py
76-
sed -i "s/__release__.*$$/__release__ = '$(RELEASE)'/" plugnpy/__init__.py
7772

7873
# Build minimal Conda environment
7974
conda:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ or
7373
make wheel
7474
```
7575

76-
This will create a `plugnpy-VERSION.RELEASE.tar.gz` file in the `dist` directory which can be installed in the same way as the prepackaged one above.
76+
This will create a `plugnpy-VERSION.tar.gz` file in the `dist` directory which can be installed in the same way as the prepackaged one above.
7777

7878

7979
## Writing Checks

RELEASE

Lines changed: 0 additions & 1 deletion
This file was deleted.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: plugnpy
3-
version: 2.0.0
3+
version: 2.0.1
44

55
source:
66
path: ..

plugnpy/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""plugnpy - A Simple Python Library for creating Opsview Opspack plugins"""
22

3-
__version__ = '2.0.0'
4-
__release__ = '1'
3+
__version__ = '2.0.1'
54
__program_name__ = 'plugnpy'
65

76
from .check import Check

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from subprocess import call
77
from setuptools import Command, find_packages, setup
88
from plugnpy import __version__ as VERSION
9-
from plugnpy import __release__ as RELEASE
109

1110

1211
def read(fname):
@@ -39,7 +38,7 @@ def run(self):
3938

4039
setup(
4140
name='plugnpy',
42-
version=VERSION + '.' + RELEASE,
41+
version=VERSION,
4342
description='A Simple Python Library for creating Opsview Opspack plugins',
4443
long_description=read('README.md'),
4544
url='https://github.com/opsview/plugnpy',
@@ -57,7 +56,7 @@ def run(self):
5756
keywords='plugnpy',
5857
packages=['plugnpy'],
5958
data_files=[
60-
('info', ['VERSION', 'RELEASE', 'LICENSE', 'README.md'])
59+
('info', ['VERSION', 'LICENSE', 'README.md'])
6160
],
6261
install_requires=[],
6362
extras_require={

0 commit comments

Comments
 (0)