Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Jul 22, 2016
1 parent b212e24 commit ca34d86
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Changed

### Fixed


## [1.4.0] - 2016-07-22

### Changed

- Use more efficient new `skip_varint()` function when iterating over
packed varints.
- Split `decode_varint()` function into two functions speeding up the
Expand All @@ -20,8 +27,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Introduce new class `data_view` and functions using and returning it.
Read UPGRADING.md for details.

### Fixed


## [1.3.0] - 2016-02-18

Expand Down Expand Up @@ -85,7 +90,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Make pbf reader and writer code endianess-aware.


[unreleased]: https://github.com/osmcode/libosmium/compare/v1.3.0...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/osmcode/libosmium/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/osmcode/libosmium/compare/v1.2.3...v1.3.0
[1.2.3]: https://github.com/osmcode/libosmium/compare/v1.2.2...v1.2.3
[1.2.2]: https://github.com/osmcode/libosmium/compare/v1.2.1...v1.2.2
Expand Down
2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ macro `PROTOZERO_STRICT_API` in which case Protozero will compile without the
code used for backwards compatibilty. You will then get compile errors for
older API usages.

## Upgrading from *v1.3.0* to *master*
## Upgrading from *v1.3.0* to *v1.4.0*

* Functions in `pbf_reader` (and the derived `pbf_message`) called
`get_packed_*()` now return an `iterator_range` instead of a `std::pair`.
Expand Down
4 changes: 2 additions & 2 deletions include/protozero/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ documentation.
#define PROTOZERO_VERSION_MAJOR 1

/// The minor version number
#define PROTOZERO_VERSION_MINOR 3
#define PROTOZERO_VERSION_MINOR 4

/// The patch number
#define PROTOZERO_VERSION_PATCH 0
Expand All @@ -29,7 +29,7 @@ documentation.
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)

/// Version number as string
#define PROTOZERO_VERSION_STRING "1.3.0"
#define PROTOZERO_VERSION_STRING "1.4.0"


#endif // PROTOZERO_VERSION_HPP
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protozero",
"version": "1.3.0",
"version": "1.4.0",
"description": "Minimalist protocol buffer decoder and encoder in C++",
"main": "./package.json",
"repository" : {
Expand Down

0 comments on commit ca34d86

Please sign in to comment.