Skip to content

Commit

Permalink
Merge branch 'develop' into unstable
Browse files Browse the repository at this point in the history
# Conflicts:
#	README.md
  • Loading branch information
Tamschi committed Oct 21, 2021
2 parents d916291 + ccfae35 commit 8c8bb22
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 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.3]
- Crate version (if applicable): [e.g. 0.0.4]

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

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

## 0.0.4

2021-10-21

- Revisions:
- Corrected the `package.license` field in Cargo.toml. Sorry about that.

## 0.0.3

2021-10-21
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.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "reserde"
version = "0.0.3"
version = "0.0.4"
authors = ["Tamme Schichler <tamme@schichler.dev>"]
edition = "2018"
description = "Serde-based CLI document converter (Bencode, CBOR, JSON, TAML, x-www-form-urlencoded etc.)"
license = "AGPL-3.0-or-later"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tamschi/reserde"
homepage = "https://github.com/Tamschi/reserde/tree/v0.0.3"
documentation = "https://docs.rs/reserde/0.0.3"
homepage = "https://github.com/Tamschi/reserde/tree/v0.0.4"
documentation = "https://docs.rs/reserde/0.0.4"
keywords = ["Serde", "cli", "converter"]
categories = ["command-line-utilities", "encoding"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions 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/reserde/workflows/CI/badge.svg?branch=unstable)](https://github.com/Tamschi/reserde/actions?query=workflow%3ACI+branch%3Aunstable)
![Crates.io - License](https://img.shields.io/crates/l/reserde/0.0.3)
![Crates.io - License](https://img.shields.io/crates/l/reserde/0.0.4)

[![GitHub](https://img.shields.io/static/v1?logo=GitHub&label=&message=%20&color=grey)](https://github.com/Tamschi/reserde)
[![open issues](https://img.shields.io/github/issues-raw/Tamschi/reserde)](https://github.com/Tamschi/reserde/issues)
Expand All @@ -33,7 +33,7 @@ reserde --help
```

```txt
reserde 0.0.3
reserde 0.0.4
Transcode a self-describing format into a different format.
Currently supports Bencode, Bincode (--out only), CBOR, JSON (--pretty), TAML (--in only), XML, x-www-form-urlencoded
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

| Version | Supported | ***Initial*** Reason for Removal |
| ------- | ------------------ | -------------------------------- |
| 0.0.1-3 | :white_check_mark: | |
| 0.0.1-4 | :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/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/reserde/0.0.3")]
#![doc(html_root_url = "https://docs.rs/reserde/0.0.4")]
#![warn(clippy::pedantic)]

use serde_detach::detach;
Expand Down

0 comments on commit 8c8bb22

Please sign in to comment.