Skip to content

Commit 829d890

Browse files
committed
release: 1.1.0
1 parent b16db81 commit 829d890

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
All notable changes to this project will be documented in this file(see http://keepachangelog.com/).
33

44
## [Unreleased]
5+
6+
## [1.1.0] - 2016-07-22
57
### Added
68
- str: lowercase, uppercase, capitalize a string.
79
- str: case transform, trim methods accept const string.

include/chen/chen.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* libchen: A General Purpose C++ Toolkit
3-
* @version 1.0.1
3+
* @version 1.1.0
44
* @author Jian Chen <admin@chensoft.com>
55
* @link http://chensoft.com
66
* @license Licensed under MIT license
@@ -10,10 +10,10 @@
1010

1111
// version
1212
constexpr int CHEN_VERSION_MAJOR = 1;
13-
constexpr int CHEN_VERSION_MINOR = 0;
14-
constexpr int CHEN_VERSION_PATCH = 1;
13+
constexpr int CHEN_VERSION_MINOR = 1;
14+
constexpr int CHEN_VERSION_PATCH = 0;
1515

16-
constexpr const char *CHEN_VERSION = "1.0.1";
16+
constexpr const char *CHEN_VERSION = "1.1.0";
1717

1818
// include
1919
#include <chen/base/any.hpp>

0 commit comments

Comments
 (0)