Skip to content

Commit

Permalink
Bumped version to 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamschi committed Jul 29, 2021
1 parent 84eba13 commit 6b9daf9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If applicable, add screenshots to help explain your problem.
**please complete the following information:**

- `rustc --version`: [e.g. 1.53.0]
- Crate version (if applicable): [e.g. 0.0.9]
- Crate version (if applicable): [e.g. 0.0.10]

**Additional context**
Add any other context about the problem here.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<!-- markdownlint-disable no-trailing-punctuation -->

## next
## 0.0.10

TODO: Date
2021-07-29

* **Breaking:**
* `Decoded` is now `DataLiteral` and so on.
Expand Down
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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "taml"
version = "0.0.9"
version = "0.0.10"
authors = ["Tamme Schichler <tamme@schichler.dev>"]
edition = "2018"
description = "A kind-to-humans configuration language."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tamschi/taml"
homepage = "https://github.com/Tamschi/taml/tree/v0.0.9"
documentation = "https://docs.rs/taml/0.0.9"
homepage = "https://github.com/Tamschi/taml/tree/v0.0.10"
documentation = "https://docs.rs/taml/0.0.10"
keywords = ["structured", "humane", "configuration", "parser"]
categories = ["parser-implementations"]
readme = "README.md"
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 @@

![Rust 1.53](https://img.shields.io/static/v1?logo=Rust&label=&message=1.53&color=grey)
[![CI](https://github.com/Tamschi/taml/workflows/CI/badge.svg?branch=develop)](https://github.com/Tamschi/taml/actions?query=workflow%3ACI+branch%3Adevelop)
![Crates.io - License](https://img.shields.io/crates/l/taml/0.0.9)
![Crates.io - License](https://img.shields.io/crates/l/taml/0.0.10)

[![GitHub](https://img.shields.io/static/v1?logo=GitHub&label=&message=%20&color=grey)](https://github.com/Tamschi/taml)
[![open issues](https://img.shields.io/github/issues-raw/Tamschi/taml)](https://github.com/Tamschi/taml/issues)
Expand Down
10 changes: 5 additions & 5 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Supported Versions

| Version | Supported | ***Initial*** Reason for Removal |
| ------- | ------------------ | ------------------------------------------------------------------------------------------------------------ |
| 0.0.8-9 | :white_check_mark: | |
| 0.0.7 | :shipit: | Detailed spans for "decoded" values (`<…:…>`) use local positions in this version, which wasn't intentional. |
| 0.0.1-6 | :white_check_mark: | |
| Version | Supported | ***Initial*** Reason for Removal |
| -------- | ------------------ | ------------------------------------------------------------------------------------------------------------ |
| 0.0.8-10 | :white_check_mark: | |
| 0.0.7 | :shipit: | Detailed spans for "decoded" values (`<…:…>`) use local positions in this version, which wasn't intentional. |
| 0.0.1-6 | :white_check_mark: | |

Faulty versions are [yanked](https://doc.rust-lang.org/cargo/commands/cargo-yank.html), where possible after a Semver-compatible update is made available, and added to the table above as unsupported.
They are also marked with an additional `v….….…-yanked` tag in Git to make them easily recognisable, but original release tags are not removed.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/taml/0.0.9")]
#![doc(html_root_url = "https://docs.rs/taml/0.0.10")]
#![warn(clippy::pedantic)]
#![allow(clippy::result_unit_err)]
#![allow(
Expand Down

0 comments on commit 6b9daf9

Please sign in to comment.