Skip to content

Commit 35bfd88

Browse files
authored
Merge pull request #29 from rudderlabs/master
chore: pull master into develop post release v1.1.4
2 parents f2bb520 + 56355c8 commit 35bfd88

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.1.4]
4+
5+
### Bug Fixes
6+
7+
- context precedence ([#27](https://github.com/rudderlabs/rudder-sdk-rust/pull/27))
8+
- context override in batch ([#25](https://github.com/rudderlabs/rudder-sdk-rust/pull/25))
9+
310
## [1.1.3]
411

512
### Bug Fixes

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rudderanalytics"
3-
version = "1.1.3"
3+
version = "1.1.4"
44
edition = "2018"
55
readme = "README.md"
66
description = "The RudderStack Rust SDK is an analytics client to track events from your Rust application"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::io;
88
fn main() -> Result<(), Box<dyn Error>> {
99
env_logger::init();
1010
let matches = App::new("Rudderanalytics")
11-
.version("1.1.3")
11+
.version("1.1.4")
1212
.about("Sends analytics events to RudderStack")
1313
.setting(AppSettings::ColoredHelp)
1414
.arg(

src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use chrono::prelude::*;
1515

1616
// constants and reserved keywords
1717
const NAME: &str = "RudderStack Rust SDK";
18-
const VERSION: &str = "1.1.3";
18+
const VERSION: &str = "1.1.4";
1919
static RESERVED_KEYS : [&str;1] = ["library"];
2020
const CHANNEL :&str = "server";
2121

0 commit comments

Comments
 (0)