-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
565fb86
commit 81e45be
Showing
4 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|