From 8840c21a37c4ea85f24ad6324995e1190d433455 Mon Sep 17 00:00:00 2001 From: Lukas Lueg Date: Wed, 8 Feb 2023 23:50:48 +0100 Subject: [PATCH] Bump to 0.6.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- example_project/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39478a3cc..bb3e595c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.6.0] - unreleased +### Changed +- Identical re-release after yanking 0.5.3, due to semver failure + ## [0.5.3] - 2023-02-08 ### Changed - Bump `git2` to 0.16, mitigating GHSA-8643-3wh5-rmjq diff --git a/Cargo.toml b/Cargo.toml index f6f9d24e7..397b328d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "built" -version = "0.5.3" +version = "0.6.0" description = "Provides a crate with information from the time it was built." repository = "https://github.com/lukaslueg/built" documentation = "https://docs.rs/built" diff --git a/example_project/Cargo.toml b/example_project/Cargo.toml index e0293ba7b..25c5ca1a6 100644 --- a/example_project/Cargo.toml +++ b/example_project/Cargo.toml @@ -6,7 +6,7 @@ build = "build.rs" edition = "2018" [dependencies] -built = { version = "0.5", path="../", features = ["chrono", "semver"] } +built = { version = "0.6", path="../", features = ["chrono", "semver"] } [build-dependencies] -built = { version = "0.5", path="../", features = ["git2", "chrono", "semver"] } +built = { version = "0.6", path="../", features = ["git2", "chrono", "semver"] }