File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file(see http://keepachangelog.com/ ).
3
3
4
4
## [ Unreleased]
5
+
6
+ ## [ 1.0.0] - 2016-06-20
5
7
### Added
6
8
- ini: report error position if found syntax error.
9
+ - data: add unit test for json and ini parser.
10
+
11
+ ### Changed
12
+ - num: improve double to string performance.
7
13
8
14
## [ 0.1.0-rc.1] - 2016-06-19
9
15
### Added
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/chensoft/libchen.svg?branch=master )] ( https://travis-ci.org/chensoft/libchen )
4
4
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/v7jtgjh4hso5qim8?svg=true )] ( https://ci.appveyor.com/project/chensoft/libchen )
5
- [ ![ release] ( http://github-release-version.herokuapp.com/github/chensoft/libchen/release.svg?style=flat&refresh=2 )] ( https://github.com/chensoft/libchen/releases/latest )
5
+ [ ![ release] ( http://github-release-version.herokuapp.com/github/chensoft/libchen/release.svg?style=flat&refresh=3 )] ( https://github.com/chensoft/libchen/releases/latest )
6
6
[ ![ MIT licensed] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://raw.githubusercontent.com/hyperium/hyper/master/LICENSE )
7
7
8
8
libchen is a general purpose C++ toolkit, it contains many useful and handy methods for creating complex software. It's open-source and released under the MIT License.
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* libchen: A General Purpose C++ Toolkit
3
- * @version 0.1 .0
3
+ * @version 1.0 .0
4
4
* @author Jian Chen <admin@chensoft.com>
5
5
* @link http://chensoft.com
6
6
* @license Licensed under MIT license
9
9
#pragma once
10
10
11
11
// version
12
- constexpr int CHEN_VERSION_MAJOR = 0 ;
13
- constexpr int CHEN_VERSION_MINOR = 1 ;
12
+ constexpr int CHEN_VERSION_MAJOR = 1 ;
13
+ constexpr int CHEN_VERSION_MINOR = 0 ;
14
14
constexpr int CHEN_VERSION_PATCH = 0 ;
15
15
16
- constexpr const char *CHEN_VERSION = " 0.1 .0" ;
16
+ constexpr const char *CHEN_VERSION = " 1.0 .0" ;
17
17
18
18
// include
19
19
#include < chen/base/any.hpp>
You can’t perform that action at this time.
0 commit comments