Skip to content

Commit 266da9f

Browse files
committed
version: release 1.0.0, the first stable version
1 parent 6d73edb commit 266da9f

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
All 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

88
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.

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 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
@@ -9,11 +9,11 @@
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;
1414
constexpr 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>

0 commit comments

Comments
 (0)