Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 2.1.0 (2026-07-23)
--------------------------
Resolve idle-sleep and flush-timeout shutdown hangs in the emitter, and add a configurable flush timeout (#100)
Restore build & Install workflows and stabilize integration tests (#99)
Ensure database filename used by test is invalid with SQLite >= 3.39.0 (#94)
Add delays to integration tests before checking received events in Micro to allow for async processing and disable cookie test on mac
Fix documentation build using Doxygen

Version 2.0.0 (2023-05-26)
--------------------------
Add option to install the tracker as an imported target in a CMake project (close #85) (thanks to @tamaskenezlego)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ include(FetchContent)
FetchContent_Declare(
snowplow
GIT_REPOSITORY https://github.com/snowplow/snowplow-cpp-tracker
GIT_TAG 2.0.0
GIT_TAG 2.1.0
)
FetchContent_MakeAvailable(snowplow)
target_link_libraries(your-target snowplow)
Expand Down Expand Up @@ -192,7 +192,7 @@ limitations under the License.
[travis-image]: https://travis-ci.org/snowplow/snowplow-cpp-tracker.png?branch=master
[travis]: https://travis-ci.org/snowplow/snowplow-cpp-tracker

[release-image]: https://img.shields.io/badge/release-2.0.0-6ad7e5.svg?style=flat
[release-image]: https://img.shields.io/badge/release-2.1.0-6ad7e5.svg?style=flat
[releases]: https://github.com/snowplow/snowplow-cpp-tracker/releases

[license-image]: https://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand Down
2 changes: 1 addition & 1 deletion include/snowplow/constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace snowplow {
using std::string;
using std::set;

const string SNOWPLOW_TRACKER_VERSION_LABEL = "cpp-2.0.0";
const string SNOWPLOW_TRACKER_VERSION_LABEL = "cpp-2.1.0";

// post requests
const string SNOWPLOW_POST_PROTOCOL_VENDOR = "com.snowplowanalytics.snowplow";
Expand Down
Loading