Skip to content

Commit 319783c

Browse files
committed
Version bump + Changelog
1 parent 52bc008 commit 319783c

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [v1.1.1] - 2018-10-31
8+
9+
### Fixed
10+
- Build issue on RHEL7 (#244, #246)
11+
- Build with empty install prefix (#226)
12+
- GnuInstallDirs handling for library targets (#239)
13+
- Disabled libcurl signal handlers (#210)
14+
- Terrible performance for socket based connectors (#229)
15+
- Library versioning error (1.1.0 release actually specified 1.0.0)
16+
17+
### Added
18+
- Missing documentation about python stubgenerator (#222)
19+
- Parameter to enable omitEndingLineFeed() (#213)
20+
- Documenation in examples about throwing serverside errors (#249)
21+
22+
### Changed
23+
- Updated CI images to use Ubuntu 18.04 instead of 17.04
24+
- Disabled FileDescriptor connectors by default
25+
- Removed custom FindCURL cmake module (#237)
26+
- Parameter handling of procedurs without params in stubgenerator
27+
728
## [v1.1.0] - 2018-01-04
829
### Fixed
930
- Fix missing hiredis libs when using only REDIS_CLIENT

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ if (${CMAKE_MAJOR_VERSION} GREATER 2)
2222
endif()
2323

2424
set(MAJOR_VERSION 1)
25-
set(MINOR_VERSION 0)
26-
set(PATCH_VERSION 0)
25+
set(MINOR_VERSION 1)
26+
set(PATCH_VERSION 1)
2727
set(SO_VERSION 1)
2828

2929
if(NOT MSVC)

0 commit comments

Comments
 (0)