Skip to content

Commit d1bd703

Browse files
Merge pull request #49 from BenjamenMeyer/enhancement_v-0-11
Enhancement: v0.11 changes
2 parents 63870a9 + a6eeeee commit d1bd703

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed

docs/changes/0.10.rst

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.. _0.10:
2+
3+
ChangeLog for Stack-In-A-Box 0.10
4+
=================================
5+
6+
New
7+
---
8+
9+
- StackInABox moved to a new organization in GitHub
10+
11+
Breaking Changes
12+
----------------
13+
- Refactored the utilities for the module names to be less awkward.
14+
stackinabox.util_* is now stackinabox.util.*
15+
- Moved stackinabox.utils to stackinabox.util.tools
16+
17+
Fixed
18+
-----
19+

docs/changes/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ChangeLog
44
.. toctree::
55

66
latest <latest>
7+
0.10 <0.10>
78
0.9 <0.9>
89
0.8 <0.8>
910
0.7 <0.7>

docs/changes/latest.rst

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@ ChangeLog for Stack-In-A-Box (latest)
66
New
77
---
88

9-
- StackInABox moved to a new organization in GitHub
10-
119
Breaking Changes
1210
----------------
13-
- Refactored the utilities for the module names to be less awkward.
14-
stackinabox.util_* is now stackinabox.util.*
15-
- Moved stackinabox.utils to stackinabox.util.tools
1611

1712
Fixed
1813
-----
19-
14+
- Removed `sphinx` from being a dependency as it's only required
15+
for building the documentation.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='stackinabox',
8-
version='0.10',
8+
version='0.11',
99
description='RESTful API Testing Suite',
1010
license='Apache License 2.0',
1111
url='https://github.com/TestInABox/stackInABox',

stackinabox/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"""
44

55
__VERSION_MAJOR = 0
6-
__VERSION_MINOR = 10
6+
__VERSION_MINOR = 11
77

88
version = (__VERSION_MAJOR, __VERSION_MINOR)

0 commit comments

Comments
 (0)