Skip to content

Commit 4ed56be

Browse files
committed
Changed to version 2.1.0.
1 parent b812ebc commit 4ed56be

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## [Unreleased](https://github.com/lumik/enum_flags/compare/master...develop)
99

1010

11+
### Added
12+
13+
14+
### Changed
15+
16+
17+
### Fixed
18+
19+
20+
### Removed
21+
22+
23+
## [Version 2.1.0](https://github.com/lumik/enum_flags/compare/v2.0.0...v2.1.0)
24+
25+
1126
### Added
1227

1328
- Added index documentation page.
@@ -26,9 +41,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2641
- Fixed bad version number in `Makefile` and `README.md`.
2742

2843

29-
### Removed
30-
31-
3244
## [Version 2.0.0 *(2018-02-20)*](https://github.com/lumik/enum_flags/compare/v1.0.1...v2.0.0)
3345

3446

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = enum_flags
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.0.0
41+
PROJECT_NUMBER = 2.1.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 2.0.0
1+
VERSION = 2.1.0
22

33
CXX = g++
44
CXXFLAGS = -pipe -fno-keep-inline-dllexport -O2 -std=c++0x -frtti -Wall -Wextra -fexceptions -mthreads

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ make install
4242
```
4343

4444
If you want to change destination directory, change variable DESTDIR, for example, if you want to place the header file
45-
to `/opt/include/enum_flags2.0.0/enum_flags.h`, you should invoke
45+
to `/opt/include/enum_flags2.1.0/enum_flags.h`, you should invoke
4646
```
4747
make DESTDIR=/opt install
4848
```
@@ -59,7 +59,7 @@ If you want bitwise operators to work for your enumeration, you have to overload
5959
to return true.
6060

6161
```cpp
62-
#include "enum_flags2.0.0/enum_flags.h"
62+
#include "enum_flags2.1.0/enum_flags.h"
6363

6464
enum struct TestFlags : unsigned char
6565
{

src/enum_flags/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ make install
4444
```
4545

4646
If you want to change destination directory, change variable DESTDIR, for example, if you want to place the header file
47-
to `/opt/include/enum_flags2.0.0/enum_flags.h`, you should invoke
47+
to `/opt/include/enum_flags2.1.0/enum_flags.h`, you should invoke
4848
```
4949
make DESTDIR=/opt install
5050
```
@@ -61,7 +61,7 @@ If you want bitwise operators to work for your enumeration, you have to overload
6161
to return true.
6262

6363
```cpp
64-
#include "enum_flags2.0.0/enum_flags.h"
64+
#include "enum_flags2.1.0/enum_flags.h"
6565

6666
enum struct TestFlags : unsigned char
6767
{

0 commit comments

Comments
 (0)