Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Jun 25, 2019
1 parent 565fb86 commit 81e45be
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ before_deploy:
deploy:
provider: script
skip_cleanup: true
script: rsync -r --delete-after --quiet ${TRAVIS_BUILD_DIR}/doc/html/* [email protected]:/var/www/scnlib.eliaskosunen.com/master
script: rsync -r --delete-after --quiet ${TRAVIS_BUILD_DIR}/doc/html/* [email protected]:/var/www/scnlib.dev/master
on:
branch: master
condition: "$DOC = ON"
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 0.1.1

_Released 2019-06-25_

* Add more examples
* Fix #8: Fix segfault when using `scn::cstdin()` or `scn::wcstdin()`,
caused by the copy and move constructor of `small_vector` setting data pointer to `nullptr`
if copying/moving from an empty `small_vector`.
(Thanks @SuperWig for reporting!)
* Fix compilation error when using `scn::ranges::get_value`.

# 0.1

_Released 2019-06-23_

Initial release
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,17 @@ but it's developed completely independently.

## Documentation and tutorial

The documentation can be found online, from
https://scnlib.eliaskosunen.com.
The documentation can be found online, from https://scnlib.dev.
The documentation includes a tutorial.

To build the docs yourself, build the `doc` target generated by CMake.
Building the documentation requires Doxygen.

Rather lacking examples can be found from the `examples/` folder.

Should you get stuck somewhere, you can find me on the [CppLang Slack](cpplang.now.sh),
or by DMing me on [Twitter](https://twitter.com/eliaskosunen).

## Installing

### Submodule
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.0.{build}
version: 0.1.1.{build}
clone_depth: 1

environment:
Expand Down

0 comments on commit 81e45be

Please sign in to comment.