Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/changes/0.10.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.. _0.10:

ChangeLog for Stack-In-A-Box 0.10
=================================

New
---

- StackInABox moved to a new organization in GitHub

Breaking Changes
----------------
- Refactored the utilities for the module names to be less awkward.
stackinabox.util_* is now stackinabox.util.*
- Moved stackinabox.utils to stackinabox.util.tools

Fixed
-----

1 change: 1 addition & 0 deletions docs/changes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ChangeLog
.. toctree::

latest <latest>
0.10 <0.10>
0.9 <0.9>
0.8 <0.8>
0.7 <0.7>
Expand Down
8 changes: 2 additions & 6 deletions docs/changes/latest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ ChangeLog for Stack-In-A-Box (latest)
New
---

- StackInABox moved to a new organization in GitHub

Breaking Changes
----------------
- Refactored the utilities for the module names to be less awkward.
stackinabox.util_* is now stackinabox.util.*
- Moved stackinabox.utils to stackinabox.util.tools

Fixed
-----

- Removed `sphinx` from being a dependency as it's only required
for building the documentation.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='stackinabox',
version='0.10',
version='0.11',
description='RESTful API Testing Suite',
license='Apache License 2.0',
url='https://github.com/TestInABox/stackInABox',
Expand Down
2 changes: 1 addition & 1 deletion stackinabox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""

__VERSION_MAJOR = 0
__VERSION_MINOR = 10
__VERSION_MINOR = 11

version = (__VERSION_MAJOR, __VERSION_MINOR)