Skip to content

Commit

Permalink
Update description and badge in main README.md (#18)
Browse files Browse the repository at this point in the history
* Update description to say GeoTIFF instead of TIFF

Heading in main README.md now says GeoTIFF instead of TIFF. Added this description to the Cargo.toml file and crate level docs in src/lib.rs.

* Update badge to point to crates.io 0.0.2 version

Also update version in Cargo.toml and Cargo.lock files.
  • Loading branch information
weiji14 authored Sep 9, 2024
1 parent 03b2b6a commit b7a36af
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "geotiff"
version = "0.0.1"
description = "A GeoTIFF library for Rust"
version = "0.0.2"
edition = "2021"
authors = ["Dominik Bucher <[email protected]>"]
repository = "https://github.com/georust/geotiff"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# A TIFF Library for Rust
# A GeoTIFF library for Rust

![Version](https://img.shields.io/badge/version-v0.0.2-red.svg)
[![geotiff on crates.io](https://img.shields.io/crates/v/geotiff.svg)](https://crates.io/crates/geotiff)

> [!IMPORTANT]
> This crate is currently undergoing a significant refactoring process to be built on
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//! A [GeoTIFF](https://www.ogc.org/standard/geotiff) library for Rust
use std::any::type_name;
use std::io::{Read, Seek};

Expand Down

0 comments on commit b7a36af

Please sign in to comment.