Skip to content

Commit

Permalink
Fix stlab#363
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixPetriconi committed Feb 10, 2021
1 parent 8bec449 commit ebcf6a6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
## v.1.6.1 - 2021 - February 10
- Fixed issues
- [#363]:(https://github.com/stlab/libraries/issues/363) Wrong version in the 1.6.0 release

## v1.6.0 - 2021 - February 9
- Backport the library to support C++14 and later
- Better auto-configuration - no need for compiler flags.
- Supported for threaded wasm using the portable tasking system (auto-configured).

## v1.5.6 - 2021 - February 1
- Fixed issues
= [#352]:(https://github.com/stlab/libraries/issues/352) Non portable 'warning' preprocessor command
- [#352]:(https://github.com/stlab/libraries/issues/352) Non portable 'warning' preprocessor command
- [#354]:(https://github.com/stlab/libraries/issues/354) Visual Studio 2017 fails to compiler async with std::function as argument

## v1.5.5 - 2021 - January 29
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else()
set( subproject OFF )
endif()

project( stlab VERSION 1.5.6 LANGUAGES CXX )
project( stlab VERSION 1.6.1 LANGUAGES CXX )

# Overriden from Conan?
# set(CMAKE_CXX_STANDARD 17)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The complete documentation is available on the [stlab home page](http://stlab.cc
Release changelogs are listed in [CHANGES.md](CHANGES.md).

# Supported Platforms
- All OS that have a C++17 compliant compiler
- All OS that have a C++14 compliant compiler

# Requirements
- C++17 Compiler
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def option_on_off(option):

class StlabLibrariesConan(ConanFile):
name = "stlab"
version = "1.5.6" #TODO(fernando): see how to automate the version number
version = "1.6.1" #TODO(fernando): see how to automate the version number
license = "http://www.boost.org/users/license.html"
url = "https://github.com/stlab/libraries"
description = "Software Technology Lab (stlab) libraries"
Expand Down

0 comments on commit ebcf6a6

Please sign in to comment.