Bumped version to 1.1
This commit is contained in:
12
README.rst
12
README.rst
@@ -17,7 +17,7 @@ Then copy this wheel to Blender::
|
|||||||
|
|
||||||
cp dist/blender_bam-*.whl /path/to/blender/release/scripts/addons/io_blend_utils/
|
cp dist/blender_bam-*.whl /path/to/blender/release/scripts/addons/io_blend_utils/
|
||||||
|
|
||||||
Remove old wheels that are still in `/path/to/blender/release/scripts/addons/io_blend_utils/`
|
Remove old wheels that are still in /path/to/blender/release/scripts/addons/io_blend_utils/
|
||||||
before committing.
|
before committing.
|
||||||
|
|
||||||
|
|
||||||
@@ -27,3 +27,13 @@ Running bam-pack from the wheel
|
|||||||
This is the way that Blender runs bam-pack::
|
This is the way that Blender runs bam-pack::
|
||||||
|
|
||||||
PYTHONPATH=./path/to/blender_bam-*.whl python3 -m bam.pack
|
PYTHONPATH=./path/to/blender_bam-*.whl python3 -m bam.pack
|
||||||
|
|
||||||
|
|
||||||
|
Bumping versions
|
||||||
|
----------------
|
||||||
|
|
||||||
|
When bumping the version to something new, make sure you update the following files:
|
||||||
|
|
||||||
|
- setup.py
|
||||||
|
- bam/__init__.py
|
||||||
|
- doc/source/conf.py
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = "1.0"
|
__version__ = "1.1"
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
from .cli import main
|
from .cli import main
|
||||||
|
@@ -60,9 +60,9 @@ copyright = u'2014, Blender Institute'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.0.1'
|
version = '1.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.0.1 alpha'
|
release = '1.1'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
2
setup.py
2
setup.py
@@ -16,7 +16,7 @@ requires = ['requests>=2.4']
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='blender-bam',
|
name='blender-bam',
|
||||||
version='1.0',
|
version='1.1',
|
||||||
url='http://developer.blender.org/project/view/55',
|
url='http://developer.blender.org/project/view/55',
|
||||||
download_url='https://pypi.python.org/pypi/blender-bam',
|
download_url='https://pypi.python.org/pypi/blender-bam',
|
||||||
license='GPLv2+',
|
license='GPLv2+',
|
||||||
|
Reference in New Issue
Block a user