File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
10
## [ 1.1.3]
4
11
5
12
### Bug Fixes
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rudderanalytics"
3
- version = " 1.1.3 "
3
+ version = " 1.1.4 "
4
4
edition = " 2018"
5
5
readme = " README.md"
6
6
description = " The RudderStack Rust SDK is an analytics client to track events from your Rust application"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use std::io;
8
8
fn main ( ) -> Result < ( ) , Box < dyn Error > > {
9
9
env_logger:: init ( ) ;
10
10
let matches = App :: new ( "Rudderanalytics" )
11
- . version ( "1.1.3 " )
11
+ . version ( "1.1.4 " )
12
12
. about ( "Sends analytics events to RudderStack" )
13
13
. setting ( AppSettings :: ColoredHelp )
14
14
. arg (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use chrono::prelude::*;
15
15
16
16
// constants and reserved keywords
17
17
const NAME : & str = "RudderStack Rust SDK" ;
18
- const VERSION : & str = "1.1.3 " ;
18
+ const VERSION : & str = "1.1.4 " ;
19
19
static RESERVED_KEYS : [ & str ; 1 ] = [ "library" ] ;
20
20
const CHANNEL : & str = "server" ;
21
21
You can’t perform that action at this time.
0 commit comments