Skip to content

Commit 2b54768

Browse files
committed
update CHANGELOG and bump to v0.4.0
this closes #38
1 parent 16120c8 commit 2b54768

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Changelog
22

3-
## v0.4.0 (???)
3+
## v0.4.0 (2nd February 2016)
4+
5+
### Features
6+
**This is a major backwards-incompatible API refactor please read carefully**
7+
8+
- split out into a simple and an advanced API
9+
- simple API via static methods
10+
- advanced usage via a connection object
11+
- support for custom user agent strings
12+
- support for connection pooling and keep-alive
13+
- support for following redirects
14+
- support for getting request metrics from the Connection object
15+
16+
### Improvements and fixes
17+
- increased test coverage
18+
- addition of valgrind and lint runs on CI
19+
- fixed some memory leaks
20+
- improved documentation coverage
21+
422

523
## v0.3.0 (10th January 2016)
624

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test_program_CPPFLAGS=-Iinclude -Ivendor/gtest-1.7.0/include -Ivendor/jsoncpp-0.
1212
lib_LTLIBRARIES=librestclient-cpp.la
1313
librestclient_cpp_la_SOURCES=source/restclient.cc source/connection.cc source/helpers.cc
1414
librestclient_cpp_la_CXXFLAGS=-fPIC
15-
librestclient_cpp_la_LDFLAGS=-version-info 1:0:1
15+
librestclient_cpp_la_LDFLAGS=-version-info 2:1:1
1616

1717
dist_doc_DATA = README.md
1818

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.52])
2-
AC_INIT([restclient-cpp], [0.3.0], [[email protected]])
2+
AC_INIT([restclient-cpp], [0.4.0], [[email protected]])
33
AM_INIT_AUTOMAKE([foreign subdir-objects])
44
LT_INIT
55
AC_CONFIG_HEADERS([config.h])

0 commit comments

Comments
 (0)