Skip to content

Commit

Permalink
release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bk192077 committed Jul 2, 2020
1 parent 922fd37 commit 38b8098
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5)
project(struct_mapping LANGUAGES CXX)

set(LIB_MAJOR_VERSION "0")
set(LIB_MINOR_VERSION "3")
set(LIB_MINOR_VERSION "4")
set(LIB_PATCH_VERSION "0")
set(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_PATCH_VERSION}")

Expand Down
21 changes: 21 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Change Log
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## 0.4.0 - 2020.07.02

### Added
* check type limits on set value
* check type on set value
* option Bounds for integer and floating point
* option Default for bool, integer, floating point and string
* option NotEmpty for string
* Visual C++ 2019 and Microsoft (R) C/C++ Optimizing Compiler Version 19.26.28806 for x64 | Windows 64-bit (except tests)

### Changed
* exception messages
* internal mapping mechanics

### Fixed
* before starting mapping the states of F classes is reset
* std::string is no longer treated as array_like

### Removed
* unsigned long

## 0.3.0 - 2020.06.23

### Added
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# StructMapping

![Release version](https://img.shields.io/badge/release-v0.3.0-blue.svg)
![Release version](https://img.shields.io/badge/release-v0.4.0-blue.svg)

[документация на русском](/readme_ru.md)

Expand Down
2 changes: 1 addition & 1 deletion readme_ru.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# StructMapping

![Release version](https://img.shields.io/badge/release-v0.3.0-blue.svg)
![Release version](https://img.shields.io/badge/release-v0.4.0-blue.svg)

[english documentation](/readme.md)

Expand Down

0 comments on commit 38b8098

Please sign in to comment.