From 28064bb9d6f75e84fa1fa7438d8dc8b9bcfec930 Mon Sep 17 00:00:00 2001 From: Ninjani <48680156+Ninjani@users.noreply.github.com> Date: Sat, 16 Jan 2021 13:21:56 +0100 Subject: [PATCH] build(version): bump --- .github/workflows/cd.yml | 2 +- CHANGELOG.md | 20 ++++++++++++-------- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 2 +- 4 files changed, 25 insertions(+), 21 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index de532ca..57db872 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -3,7 +3,7 @@ name: Continuous Deployment on: push: tags: - - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+[-]?[a-zA-Z]+' jobs: publish: diff --git a/CHANGELOG.md b/CHANGELOG.md index df9e854..6eada5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,23 @@ # Changelog + 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). +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.2.0-alpha] - 2021-16-01 -## [Unreleased] -Switching to Handlebars templates instead of restricting to mdBook-style wiki. -(Major change) -Tests don't work right now +Switching to Handlebars templates instead of restricting to mdBook-style wiki (Major change). Tests don't work right now. ## [0.1.1] - 2020-11-28 + ### Changed: + * hypothesis crate points to crates.io version instead of git * upgraded dependencies (except tokio and directories-next) ### Added: + * badges to README * link to releases in README * first crates.io version @@ -32,7 +35,8 @@ Main commands: * `gooseberry config` - manages configuration, view and edit Hypothesis credentials, the Hypothesis group, and the location of the knowledge base * `gooseberry move` - move annotations from one group to another (**move** not copy). Useful if you have a bunch of annotations scattered around and want to move them into one group for gooseberry. - - + +[0.2.0]: https://github.com/out-of-cheese-error/gooseberry/compare/v0.1.1...v0.2.0 + [0.1.1]: https://github.com/out-of-cheese-error/gooseberry/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/out-of-cheese-error/gooseberry/releases/tag/0.1.0 diff --git a/Cargo.lock b/Cargo.lock index 6c83183..bd5450a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1035,17 +1035,17 @@ dependencies = [ [[package]] name = "gooseberry" -version = "0.1.1" -dependencies = [ - "assert_cmd", - "bat", - "bincode", - "chrono", - "chrono-english", - "color-eyre", - "confy", - "dialoguer", - "directories-next", +version = "0.2.0-alpha" +dependencies = [ + "assert_cmd", + "bat", + "bincode", + "chrono", + "chrono-english", + "color-eyre", + "confy", + "dialoguer", + "directories-next", "dotenv", "eyre", "handlebars", diff --git a/Cargo.toml b/Cargo.toml index 92db255..0bf8869 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gooseberry" -version = "0.1.1" +version = "0.2.0-alpha" authors = ["Ninjani"] edition = "2018" description = "a knowledge base tool combining Hypothesis web annotations with an mdBook wiki"