Skip to content

Commit

Permalink
Bumped version to 0.1b3
Browse files Browse the repository at this point in the history
  • Loading branch information
adamancer committed May 31, 2022
1 parent 3a724fd commit 213dc30
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

0.1b3
-----

- Added EMuReader.report_progress() to notify users about progress
reading through an XML file
- Changed EMuColumn.to_xml() method so that table rows are numbered
sequentially using the row attribute if no modifiers are given. This
prevents the EMu client from skipping empty nested table rows in
valid XML during import.
- Changed behavior of EMuRow.\_\_getitem\_\_() when a dictionary is
passed to:
1. fix a bug where empty row values matched any query string
2. return only the row. Previously the method returned the index
and row as a tuple, but this was redundant as the index is
accessible directly from the row object itself.
- Changed modifier pattern to catch additional modifiers supported by
EMu. Acceptable formats include “=”, “+”, “-”, “1=”, “1+”, and “1-”.
- Renamed EMuRow mod attribute to replace_mod to clarify that it
returns the replacement modifier

0.1b2
-----

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Adam Mansur'

# The full version, including alpha/beta/rc tags
release = '0.1b2'
release = '0.1b3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
description="Reads and writes XML for Axiell EMu",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.1b2",
version="0.1b3",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion xmu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
strip_tab,
)

__version__ = "0.1b2"
__version__ = "0.1b3"
__author__ = "Adam Mansur"
__credits__ = "Smithsonian National Museum of Natural History"

0 comments on commit 213dc30

Please sign in to comment.