Skip to content

Commit

Permalink
versionbump 3.3.21
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Dec 7, 2016
1 parent c3a1c77 commit 310766a
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ larch
:target: https://pypi.python.org/pypi/larch
:class: statusbadge

.. image:: https://img.shields.io/badge/released-09%20November%202016-blue.svg
.. image:: https://img.shields.io/badge/released-07%20December%202016-blue.svg
:target: https://pypi.python.org/pypi/larch
:class: statusbadge

Expand Down
9 changes: 5 additions & 4 deletions bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.20
current_version = 3.3.21
commit = False
tag = True

Expand All @@ -15,8 +15,9 @@ tag = True

[bumpversion:file:condabuild/larch/bld.bat]

[bumpversion:file:condabuild/larch/taiga.yml]
[bumpversion:file:taiga.yml]

[bumpversion:file:condabuild/larch/taiga_mac.yml]
[bumpversion:file:taiga_mac.yml]

[bumpversion:file:taiga_win.yml]

[bumpversion:file:condabuild/larch/taiga_win.yml]
2 changes: 1 addition & 1 deletion condabuild/larch/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pip install larch==3.3.20
pip install larch==3.3.21
if errorlevel 1 exit 1

:: Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion condabuild/larch/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

pip install larch==3.3.20
pip install larch==3.3.21

# Add more build steps here, if they are necessary.

Expand Down
4 changes: 2 additions & 2 deletions condabuild/larch/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: larch
version: "3.3.20"
version: "3.3.21"

#source:
# fn: larch-3.3.20.tar.gz
# fn: larch-3.3.21.tar.gz
# url:
# md5:

Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:target: https://pypi.python.org/pypi/larch
:class: statusbadge

.. image:: https://img.shields.io/badge/released-09%20November%202016-blue.svg
.. image:: https://img.shields.io/badge/released-07%20December%202016-blue.svg
:target: https://pypi.python.org/pypi/larch
:class: statusbadge

Expand Down
4 changes: 2 additions & 2 deletions py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import sys
import os, os.path

__version__ = '3.3.20'
__build_date__ = '09 November 2016'
__version__ = '3.3.21'
__build_date__ = '07 December 2016'

if os.environ.get('READTHEDOCS', None) == 'True':
# hack for building docs on rtfd
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, Extension
import glob, time, platform, os, sysconfig, sys, shutil, io

VERSION = '3.3.20'
VERSION = '3.3.21'



Expand Down Expand Up @@ -72,7 +72,7 @@ def read(*filenames, **kwargs):
os.environ['CLANG_CXX_LIBRARY'] = 'libc++'
os.environ['CLANG_CXX_LANGUAGE_STANDARD'] = 'gnu++0x'

# To update the version, run `git tag -a 3.3.20 -m'version 3.3.20, September 2016'`
# To update the version, run `git tag -a 3.3.21 -m'version 3.3.21, September 2016'`



Expand Down
2 changes: 1 addition & 1 deletion taiga.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies:
- nose=1.3.7
- pygments=2.1.3
- pip:
- larch==3.3.20
- larch==3.3.21

2 changes: 1 addition & 1 deletion taiga_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ dependencies:
- zlib=1.2.8=3
- pip:
- tables==3.3.0
- larch==3.3.20
- larch==3.3.21

2 changes: 1 addition & 1 deletion taiga_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
- wheel=0.29.0=py35_0
- zlib=1.2.8=vc14_3
- pip:
- larch==3.3.20
- larch==3.3.21
- tables==3.2.2


2 changes: 1 addition & 1 deletion update_git_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def execfile(filename):
else:
ver = subprocess.check_output(['git','describe','--tags','--long']).strip()
except subprocess.CalledProcessError:
ver = '3.3.20'
ver = '3.3.21'

if ver[0].lower() == 'v':
ver = ver[1:]
Expand Down

0 comments on commit 310766a

Please sign in to comment.