Skip to content

Commit

Permalink
Merge #91
Browse files Browse the repository at this point in the history
91: Update docs to refer to correct libproj version r=urschrei a=urschrei



Co-authored-by: Stephan Hügel <shugel@tcd.ie>
  • Loading branch information
bors[bot] and urschrei authored Aug 18, 2021
2 parents a818ff9 + 0f213e9 commit 801f653
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes

## 0.23.1
- Update docs to refer to correct libproj version

## 0.23

- Update to PROJ 8.1.0 via proj-sys 0.20.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "proj"
description = "High-level Rust bindings for the latest stable version of PROJ"
version = "0.23.0"
version = "0.23.1"
authors = [
"The Georust Developers <mods@georust.org>"
]
Expand All @@ -13,7 +13,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
proj-sys = { version = "0.20.0", path = "proj-sys" }
proj-sys = { version = "0.20.1", path = "proj-sys" }
geo-types = { version = "0.7", optional = true }
libc = "0.2.62"
num-traits = "0.2.8"
Expand Down
3 changes: 3 additions & 0 deletions proj-sys/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.20.1
- Fix docs to refer to correct libproj version

# 0.20.0
- Update to PROJ 8.1.0

Expand Down
2 changes: 1 addition & 1 deletion proj-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "proj-sys"
description = "Rust bindings for PROJ v8.1.x"
repository = "https://github.com/georust/proj"
version = "0.20.0"
version = "0.20.1"
readme = "README.md"
authors = ["The Georust developers <mods@georust.org>"]
keywords = ["proj", "projection", "osgeo", "geo", "geospatial"]
Expand Down
4 changes: 2 additions & 2 deletions proj-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![doc(html_logo_url = "https://raw.githubusercontent.com/georust/meta/master/logo/logo.png")]
//! # Low-level bindings for PROJ v7.1.x
//! # Low-level bindings for PROJ v8.1.x
//!
//! **This is a
//! [`*-sys`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#-sys-packages)
Expand All @@ -12,7 +12,7 @@
//! A guide to the functions can be found here:
//! <https://proj.org/development/reference/functions.html>.
//!
//! By default, the crate will search for an existing `libproj` (via `PROJ v7.1.x`)
//! By default, the crate will search for an existing `libproj` (via `PROJ v8.1.x`)
//! installation on your system using
//! [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/).
//!
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![doc(html_logo_url = "https://raw.githubusercontent.com/georust/meta/master/logo/logo.png")]
//! Coordinate transformation via bindings to the [PROJ](https://proj.org) v7.1.x API.
//! Coordinate transformation via bindings to the [PROJ](https://proj.org) v8.1.x API.
//!
//! Two coordinate transformation operations are currently provided: _projection_ (and inverse
//! projection) and _conversion_.
Expand All @@ -9,7 +9,7 @@
//! projected coordinate systems. The PROJ [documentation](https://proj.org/operations/index.html)
//! explains the distinction between these operations in more detail.
//!
//! This crate depends on [`libproj v7.1.x`](https://proj.org), accessed via the
//! This crate depends on [`libproj v8.1.x`](https://proj.org), accessed via the
//! [`proj-sys`](https://docs.rs/proj-sys) crate. By default, `proj-sys` will try to find a
//! pre-existing installation of libproj on your system. If an appropriate version of libproj
//! cannot be found, the build script will attempt to build libproj from source. You may specify a
Expand Down Expand Up @@ -98,7 +98,7 @@
//!
//! # Requirements
//!
//! By default, the crate requires `libproj` 7.1.x to be present on your system. While it may be
//! By default, the crate requires `libproj` 8.1.x to be present on your system. While it may be
//! backwards-compatible with older PROJ 6 versions, this is neither tested nor supported.
//!
//! # Feature Flags
Expand Down

0 comments on commit 801f653

Please sign in to comment.