File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file(see http://keepachangelog.com/ ).
33
44## [ Unreleased]
5+
6+ ## [ 1.0.0] - 2016-06-20
57### Added
68- 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.
713
814## [ 0.1.0-rc.1] - 2016-06-19
915### Added
Original file line number Diff line number Diff line change 22
33[ ![ Build Status] ( https://travis-ci.org/chensoft/libchen.svg?branch=master )] ( https://travis-ci.org/chensoft/libchen )
44[ ![ 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 )
66[ ![ MIT licensed] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://raw.githubusercontent.com/hyperium/hyper/master/LICENSE )
77
88libchen 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 11/* *
22 * libchen: A General Purpose C++ Toolkit
3- * @version 0.1 .0
3+ * @version 1.0 .0
44 * @author Jian Chen <admin@chensoft.com>
55 * @link http://chensoft.com
66 * @license Licensed under MIT license
99#pragma once
1010
1111// 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 ;
1414constexpr int CHEN_VERSION_PATCH = 0 ;
1515
16- constexpr const char *CHEN_VERSION = " 0.1 .0" ;
16+ constexpr const char *CHEN_VERSION = " 1.0 .0" ;
1717
1818// include
1919#include < chen/base/any.hpp>
You can’t perform that action at this time.
0 commit comments