Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-easterbrook committed Jan 2, 2024
1 parent 681c3ad commit 35c23ab
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.

Changes in v0.16.1:
1/ Binary wheels incorporate libexiv2 v0.27.7.

Changes in v0.16.0:
1/ Binary wheels incorporate libexiv2 v0.28.1.
2/ Include native language support in Windows binary wheel builds.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
python-exiv2 v\ 0.16.0
python-exiv2 v\ 0.16.1
======================

python-exiv2 is a low level interface (or binding) to the exiv2_ C++ library.
Expand Down
4 changes: 2 additions & 2 deletions src/swig-0_27_0/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def __getattr__(name):
from exiv2.types import _set_locale_dir
_set_locale_dir(_dir)

__version__ = "0.16.0"
__version_tuple__ = tuple((0, 16, 0))
__version__ = "0.16.1"
__version_tuple__ = tuple((0, 16, 1))

from exiv2.basicio import *
from exiv2.datasets import *
Expand Down
4 changes: 2 additions & 2 deletions src/swig-0_27_4/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def __getattr__(name):
from exiv2.types import _set_locale_dir
_set_locale_dir(_dir)

__version__ = "0.16.0"
__version_tuple__ = tuple((0, 16, 0))
__version__ = "0.16.1"
__version_tuple__ = tuple((0, 16, 1))

from exiv2.basicio import *
from exiv2.datasets import *
Expand Down
4 changes: 2 additions & 2 deletions src/swig-0_28_0/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def __getattr__(name):
from exiv2.types import _set_locale_dir
_set_locale_dir(_dir)

__version__ = "0.16.0"
__version_tuple__ = tuple((0, 16, 0))
__version__ = "0.16.1"
__version_tuple__ = tuple((0, 16, 1))

from exiv2.basicio import *
from exiv2.datasets import *
Expand Down

0 comments on commit 35c23ab

Please sign in to comment.