Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mintscan v0.4.0 #985

Merged
merged 1 commit into from Apr 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.

2 changes: 1 addition & 1 deletion iqhttp/LICENSE-MIT
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021 iqlusion
Copyright (c) 2021-2022 iqlusion

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
10 changes: 10 additions & 0 deletions mintscan/CHANGELOG.md
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.4.0 (2022-04-23)
### Added
- `Referer` header ([#982])

### Changed
- Bump `iqhttp` dependency to v0.2.0 ([#984])

[#982]: https://github.com/iqlusioninc/crates/pull/982
[#984]: https://github.com/iqlusioninc/crates/pull/984

## 0.3.0 (2021-10-29)
### Changed
- Bump `tendermint` crate from 0.22.0 to 0.23.0 ([#897])
Expand Down
24 changes: 11 additions & 13 deletions mintscan/Cargo.toml
@@ -1,17 +1,15 @@
[package]
name = "mintscan"
version = "0.3.0" # Also update html_root_url in lib.rs when bumping this
description = """
API client for the Mintscan Cosmos explorer by Cosmostation
"""
authors = ["Tony Arcieri <tony@iqlusion.io>", ]
homepage = "https://github.com/iqlusioninc/crates/"
repository = "https://github.com/iqlusioninc/crates/tree/main/mintscan"
license = "Apache-2.0 OR MIT"
categories = ["api-bindings", "cryptography::cryptocurrencies"]
keywords = ["api", "client", "cosmos", "explorer", "tendermint"]
readme = "README.md"
edition = "2021"
name = "mintscan"
version = "0.4.0"
description = "API client for the Mintscan Cosmos explorer by Cosmostation"
authors = ["Tony Arcieri <tony@iqlusion.io>", ]
homepage = "https://github.com/iqlusioninc/crates/"
repository = "https://github.com/iqlusioninc/crates/tree/main/mintscan"
license = "Apache-2.0 OR MIT"
categories = ["api-bindings", "cryptography::cryptocurrencies"]
keywords = ["api", "client", "cosmos", "explorer", "tendermint"]
readme = "README.md"
edition = "2021"
rust-version = "1.56"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion mintscan/LICENSE-MIT
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021 iqlusion
Copyright (c) 2021-2022 iqlusion

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
4 changes: 2 additions & 2 deletions mintscan/README.md
Expand Up @@ -12,11 +12,11 @@ API client for the [Mintscan] Cosmos explorer by [Cosmostation].

## Minimum Supported Rust Version

- Rust **1.56**
Rust **1.56**

## License

Copyright © 2021 iqlusion
Copyright © 2021-2022 iqlusion

**mintscan.rs** is distributed under the terms of either the MIT license
or the Apache License (Version 2.0), at your option.
Expand Down
16 changes: 8 additions & 8 deletions mintscan/src/lib.rs
@@ -1,11 +1,11 @@
//! API client for the [Mintscan] Cosmos explorer by [Cosmostation].
//!
//! [Mintscan]: https://www.mintscan.io/
//! [Cosmostation]: https://www.cosmostation.io/

#![doc(html_root_url = "https://docs.rs/mintscan/0.3.0")]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![warn(
clippy::unwrap_used,
missing_docs,
rust_2018_idioms,
unused_qualifications
)]

pub mod coin;
pub mod v1;
Expand Down