Skip to content

Commit

Permalink
Bump version to 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jasujm committed May 13, 2020
1 parent 1a04080 commit 0b23ca7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
Unreleased
----------
Version 0.4
-----------

Date
2020-05-13

Added
- Command line interface

Changed
- Migrate build system to flit
- Migrate Python unit tests to pytest
- Introduce tox to manage Python unit tests
- Migrate EnumECG build system to flit
- Migrate EnumECG unit tests to pytest
- Use tox to manage EnumECG unit tests
- More explicit call signatures in Python API (more type
annotations, less catch-all keyword arguments)
- Change the format of ``dict`` representation of enumerators to
have more explicit ordering of members
have a more explicit ordering of members
- Improvements to the documentation
- Use Python enums to enumerate the possible primary types and documentation
styles in the EnumECG library
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.11)
project("Enhanced Enum"
DESCRIPTION "First class enums in C++"
VERSION "0.2")
VERSION "0.4")

set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})

Expand Down
2 changes: 1 addition & 1 deletion python/enumecg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
the Enhanced Enum library.
"""

__version__ = "0.3"
__version__ = "0.4"
__author__ = "Jaakko Moisio"

import typing
Expand Down

0 comments on commit 0b23ca7

Please sign in to comment.