Skip to content

Commit

Permalink
Release 1.0-rc1
Browse files Browse the repository at this point in the history
Fix buffer overflow assertion firing on MSVC
  • Loading branch information
eliaskosunen committed Feb 21, 2022
1 parent 69fa19c commit cce9862
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 1.0-rc1 (not released)
# 1.0-rc1

_Released 2022-xx-xx_
_Released 2022-02-21_

## Additions

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ Think [{fmt}](https://github.com/fmtlib/fmt) but in the other direction.
This library is the reference implementation of the ISO C++ standards proposal
[P1729 "Text Parsing"](https://wg21.link/p1729).

This library is currently of pre-release quality (version 0.4),
but its interface and behavior should remain relatively stable.
Unless significant design flaws can be found,
the next major release will be 1.0-rc1.
This library is currently of pre-release quality (version 1.0-rc1),
but it's close to being stable.
1.0 will be released when an rc-version will prove itself reasonably bug-free.

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion include/scn/util/span.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ namespace scn {
using std::end;
return span<typename T::value_type>(
detail::to_address(begin(container)),
detail::to_address(end(container)));
detail::to_address(end(container) - 1) + 1);
}

SCN_END_NAMESPACE
Expand Down

0 comments on commit cce9862

Please sign in to comment.