Skip to content

Commit

Permalink
Release 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Mar 12, 2022
1 parent 3ff583c commit 0621443
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 1.1

_Released 2022-03-12_

* Add support for scanning 8-bit integers (`(un)signed char`, `(u)int8_t`),
and characters (`char`, `wchar_t`) as integers

```cpp
int8_t i1, i2;
char c1, c2;
auto ret = scn::scan("1 2 3 4", "{} {:c} {} {:i}", i1, i2, i3, i4);
// ret == true
// i1 == 1
// i2 == '2'
// c1 == '3'
// c2 == 4
```

* Fix usage of external fast_float in CMake (#53, thanks [@xvitaly (Vitaly Zaitsev)](https://github.com/xvitaly))
* Fix tests on big endian architectures (#54)
* Fix alignment issues with `small_vector` on 32-bit architectures

# 1.0

_Released 2022-02-28_
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This library is the reference implementation of the ISO C++ standards proposal
The library is currently deemed production-ready, and should be reasonably bug-free;
it's tested and fuzzed extensively.

The master-branch of the repository targets the next minor release (v1.1), and is backwards-compatible.
The master-branch of the repository targets the next minor release (v1.2), and is backwards-compatible.
The dev-branch targets the next major release (v2.0), and may contain backwards-incompatible changes, and may have lacking documentation.

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion include/scn/detail/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define SCN_COMPILER(major, minor, patch) \
((major)*10000000 /* 10,000,000 */ + (minor)*10000 /* 10,000 */ + (patch))
#define SCN_VERSION SCN_COMPILER(1, 0, 0)
#define SCN_VERSION SCN_COMPILER(1, 1, 0)

#ifdef __INTEL_COMPILER
// Intel
Expand Down

0 comments on commit 0621443

Please sign in to comment.