Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobatels committed Dec 25, 2020
1 parent 75fcff2 commit 222c842
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rsfbclient"
description = "Binds to official firebird client lib"
version = "0.13.0"
version = "0.14.0"
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"]
edition = "2018"
repository = "https://github.com/fernandobatels/rsfbclient"
Expand All @@ -14,10 +14,10 @@ readme = "README.md"
chrono = { version = "0.4", optional = true }
lru-cache = "0.1.2"
r2d2 = { version = "0.8.9", optional = true }
rsfbclient-core = { version = "0.13.0", path = "rsfbclient-core" }
rsfbclient-native = { version = "0.13.0", path = "rsfbclient-native", optional = true }
rsfbclient-rust = { version = "0.13.0", path = "rsfbclient-rust", optional = true }
rsfbclient-derive = { version = "0.13.0", path = "rsfbclient-derive" }
rsfbclient-core = { version = "0.14.0", path = "rsfbclient-core" }
rsfbclient-native = { version = "0.14.0", path = "rsfbclient-native", optional = true }
rsfbclient-rust = { version = "0.14.0", path = "rsfbclient-rust", optional = true }
rsfbclient-derive = { version = "0.14.0", path = "rsfbclient-derive" }
url = "2.2.0"
percent-encoding = "2.1.0"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

A [Firebird](https://firebirdsql.org/) client library to [Rust programing language](https://rust-lang.org/)

## [How to use](https://docs.rs/rsfbclient/0.13.0/rsfbclient/index.html#how-to-use-it)
## [How to use](https://docs.rs/rsfbclient/0.14.0/rsfbclient/index.html#how-to-use-it)

## [Examples](https://github.com/fernandobatels/rsfbclient/tree/master/examples)

Expand Down
2 changes: 1 addition & 1 deletion rsfbclient-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsfbclient-core"
version = "0.13.0"
version = "0.14.0"
description = "Core of firebird client lib"
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion rsfbclient-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsfbclient-derive"
version = "0.13.0"
version = "0.14.0"
description = "Derives and macros for rsfbclient"
authors = ["Luis Fernando Batels <[email protected]>"]
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions rsfbclient-native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsfbclient-native"
version = "0.13.0"
version = "0.14.0"
description = "Native(using fbclient) implementation of firebird client lib"
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"]
edition = "2018"
Expand All @@ -10,7 +10,7 @@ categories = ["database"]
license = "MIT"

[dependencies]
rsfbclient-core = { version = "0.13.0", path = "../rsfbclient-core" }
rsfbclient-core = { version = "0.14.0", path = "../rsfbclient-core" }
libloading = { version = "0.6", optional = true }

[features]
Expand Down
4 changes: 2 additions & 2 deletions rsfbclient-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsfbclient-rust"
version = "0.13.0"
version = "0.14.0"
description = "A pure Rust implementation of firebird client lib"
authors = ["Luis Fernando Batels <[email protected]>", "Jairo H Wiethan <[email protected]>"]
edition = "2018"
Expand All @@ -19,7 +19,7 @@ num-bigint = "0.3.0"
num_enum = "0.5.1"
pwhash = "0.3.1"
rand = "0.7.3"
rsfbclient-core = { version = "0.13.0", path = "../rsfbclient-core" }
rsfbclient-core = { version = "0.14.0", path = "../rsfbclient-core" }
sha-1 = "0.9.1"
sha2 = "0.9.1"

Expand Down

0 comments on commit 222c842

Please sign in to comment.