From 88222e83c48bb191b78a8098040d55786e6268ca Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sat, 17 Sep 2022 23:54:20 -0700 Subject: [PATCH] Prepare for patch release with fixed Windows build --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 7 ++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 102e41739..a2e5aecb2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest - - target: x86_64-pc-windows-gnu + - target: x86_64-pc-windows-msvc os: windows-latest runs-on: ${{ matrix.os }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 672dfc897..a32ae5643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## 0.37 (unreleased) -## 0.36 (release 17th September 2022) +## 0.36.1 (released 17th September 2022) + +Fixed a release script that prevented 0.36.0 from including Windows +binaries. + +## 0.36 (released 17th September 2022) ### Diffing diff --git a/Cargo.lock b/Cargo.lock index b0e14dbe7..a5a17d5db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -185,7 +185,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" [[package]] name = "difftastic" -version = "0.37.0" +version = "0.36.1" dependencies = [ "atty", "bumpalo", diff --git a/Cargo.toml b/Cargo.toml index 8eebd7322..95c4f251a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "A structural diff that understands syntax." repository = "https://github.com/wilfred/difftastic" homepage = "http://difftastic.wilfred.me.uk/" license = "MIT" -version = "0.37.0" +version = "0.36.1" authors = ["Wilfred Hughes "] keywords = ["diff", "syntax"] categories = ["development-tools", "command-line-utilities", "parser-implementations"]