Skip to content

Commit 71fc3e7

Browse files
committed
Release postgres-types v0.2.0
1 parent 06dcebf commit 71fc3e7

File tree

6 files changed

+12
-87
lines changed

6 files changed

+12
-87
lines changed

postgres-types/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## v0.2.0 - 2020-12-25
4+
5+
### Changed
6+
7+
* Upgraded `bytes` to 1.0.
8+
9+
### Removed
10+
11+
* Removed support for `geo-types` 0.4.
12+
313
## v0.1.3 - 2020-10-17
414

515
### Added

postgres-types/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-types"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -15,7 +15,6 @@ derive = ["postgres-derive"]
1515
with-bit-vec-0_6 = ["bit-vec-06"]
1616
with-chrono-0_4 = ["chrono-04"]
1717
with-eui48-0_4 = ["eui48-04"]
18-
with-geo-types-0_4 = ["geo-types-04"]
1918
with-geo-types-0_6 = ["geo-types-06"]
2019
with-serde_json-1 = ["serde-1", "serde_json-1"]
2120
with-uuid-0_8 = ["uuid-08"]
@@ -30,7 +29,6 @@ postgres-derive = { version = "0.4.0", optional = true, path = "../postgres-deri
3029
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }
3130
chrono-04 = { version = "0.4.16", package = "chrono", default-features = false, features = ["clock"], optional = true }
3231
eui48-04 = { version = "0.4", package = "eui48", optional = true }
33-
geo-types-04 = { version = "0.4", package = "geo-types", optional = true }
3432
geo-types-06 = { version = "0.6", package = "geo-types", optional = true }
3533
serde-1 = { version = "1.0", package = "serde", optional = true }
3634
serde_json-1 = { version = "1.0", package = "serde_json", optional = true }

postgres-types/src/geo_types_04.rs

-78
This file was deleted.

postgres-types/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,6 @@ mod bit_vec_06;
191191
mod chrono_04;
192192
#[cfg(feature = "with-eui48-0_4")]
193193
mod eui48_04;
194-
#[cfg(feature = "with-geo-types-0_4")]
195-
mod geo_types_04;
196194
#[cfg(feature = "with-geo-types-0_6")]
197195
mod geo_types_06;
198196
#[cfg(feature = "with-serde_json-1")]

postgres/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ circle-ci = { repository = "sfackler/rust-postgres" }
2424
with-bit-vec-0_6 = ["tokio-postgres/with-bit-vec-0_6"]
2525
with-chrono-0_4 = ["tokio-postgres/with-chrono-0_4"]
2626
with-eui48-0_4 = ["tokio-postgres/with-eui48-0_4"]
27-
with-geo-types-0_4 = ["tokio-postgres/with-geo-types-0_4"]
2827
with-geo-types-0_6 = ["tokio-postgres/with-geo-types-0_6"]
2928
with-serde_json-1 = ["tokio-postgres/with-serde_json-1"]
3029
with-uuid-0_8 = ["tokio-postgres/with-uuid-0_8"]

tokio-postgres/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ runtime = ["tokio/net", "tokio/time"]
3030
with-bit-vec-0_6 = ["postgres-types/with-bit-vec-0_6"]
3131
with-chrono-0_4 = ["postgres-types/with-chrono-0_4"]
3232
with-eui48-0_4 = ["postgres-types/with-eui48-0_4"]
33-
with-geo-types-0_4 = ["postgres-types/with-geo-types-0_4"]
3433
with-geo-types-0_6 = ["postgres-types/with-geo-types-0_6"]
3534
with-serde_json-1 = ["postgres-types/with-serde_json-1"]
3635
with-uuid-0_8 = ["postgres-types/with-uuid-0_8"]
@@ -48,7 +47,7 @@ percent-encoding = "2.0"
4847
pin-project-lite = "0.2"
4948
phf = "0.8"
5049
postgres-protocol = { version = "0.6.0", path = "../postgres-protocol" }
51-
postgres-types = { version = "0.1.2", path = "../postgres-types" }
50+
postgres-types = { version = "0.2.0", path = "../postgres-types" }
5251
socket2 = "0.3"
5352
tokio = { version = "1.0", features = ["io-util"] }
5453
tokio-util = { version = "0.6", features = ["codec"] }
@@ -61,7 +60,6 @@ criterion = "0.3"
6160
bit-vec-06 = { version = "0.6", package = "bit-vec" }
6261
chrono-04 = { version = "0.4", package = "chrono", default-features = false }
6362
eui48-04 = { version = "0.4", package = "eui48" }
64-
geo-types-04 = { version = "0.4", package = "geo-types" }
6563
geo-types-06 = { version = "0.6", package = "geo-types" }
6664
serde-1 = { version = "1.0", package = "serde" }
6765
serde_json-1 = { version = "1.0", package = "serde_json" }

0 commit comments

Comments
 (0)