Skip to content

Commit 521fa13

Browse files
BUMP 0.1.1 (#31)
1 parent 519874d commit 521fa13

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

bindings/python/docs/source/changelog.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
Changelog
22
=========
33

4-
Changes in Version 0.2.0
4+
Changes in Version 0.1.1
55
------------------------
66

7+
- Fixed a bug that caused Linux wheels to be created without the appropriate
8+
``manylinux`` platform tags.
79

810
Changes in Version 0.1.0
911
------------------------

bindings/python/docs/source/conf.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# documentation root, use os.path.abspath to make it absolute, like shown here.
1212
#
1313
import os
14+
import os.path as p
1415
import sys
1516
sys.path.insert(0, os.path.abspath('../..'))
1617

@@ -22,8 +23,11 @@
2223
author = 'Prashant Mital'
2324
html_show_sphinx = False
2425

25-
# The full version, including alpha/beta/rc tags
26-
version = '0.2.0.dev0'
26+
version_file = p.abspath(p.join("../../", "pymongoarrow/version.py"))
27+
version_data = {}
28+
with open(version_file, 'r') as vf:
29+
exec(vf.read(), {}, version_data)
30+
version = version_data['__version__']
2731
release = version
2832

2933
# The name of the Pygments (syntax highlighting) style to use.

bindings/python/pymongoarrow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '0.2.0.dev0'
15+
__version__ = '0.1.1'
1616

1717
_MIN_LIBBSON_VERSION = '1.17.0'

0 commit comments

Comments
 (0)