Skip to content

Commit

Permalink
Bump version to 1.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Druez <[email protected]>
  • Loading branch information
tdruez committed Sep 24, 2020
1 parent e8b2406 commit c256b7d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.2
current_version = 1.0.3
files = setup.py scancodeio/__init__.py docs/offline-installation.rst
commit = False
tag = False
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// Release notes
// -------------

### v1.0.3 (unreleased)
### v1.0.4 (unreleased)

### v1.0.3 (2020-09-24)

- Add ability to resume a failed pipeline from the run management command
Fix for https://github.com/nexB/scancode.io/issues/22
Expand Down
8 changes: 4 additions & 4 deletions docs/offline-installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Create the installable archive::

make package

Grab the installable archive in ``dist/scancodeio-1.0.2.tar.gz``
Grab the installable archive in ``dist/scancodeio-1.0.3.tar.gz``
and move that file to you offline install server.

On the offline install server:
Expand All @@ -21,7 +21,7 @@ On the offline install server:

::

tar -xf scancodeio-1.0.2.tar.gz && cd scancode.io
tar -xf scancodeio-1.0.3.tar.gz && cd scancode.io
make install
make envfile
make cleandb
Expand All @@ -37,7 +37,7 @@ Create the latest installable archive::

make package

Grab the installable archive in ``dist/scancodeio-1.0.2.tar.gz``
Grab the installable archive in ``dist/scancodeio-1.0.3.tar.gz``
and move that to you offline install server.

On the offline install server:
Expand All @@ -50,6 +50,6 @@ On the offline install server:
::

mv scancode.io scancode.io-$(date +"%Y-%m-%d_%H%M")
tar -xf scancodeio-1.0.2.tar.gz && cd scancode.io
tar -xf scancodeio-1.0.3.tar.gz && cd scancode.io
make install
make migrate
2 changes: 1 addition & 1 deletion scancodeio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Django starts so that shared_task will use this app.
from scancodeio.celery import app as celery_app

__version__ = "1.0.2"
__version__ = "1.0.3"

ROOT_DIR = Path(__file__).parent.parent.absolute()
SCAN_NOTICE = (ROOT_DIR / "scan.NOTICE").read_text()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from setuptools import find_packages
from setuptools import setup

__version__ = "1.0.2"
__version__ = "1.0.3"

requirement_files = ["etc/requirements/base.txt"]

Expand Down

0 comments on commit c256b7d

Please sign in to comment.