diff --git a/CHANGELOG.md b/CHANGELOG.md index 13f74b8..5a3a18b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.11.0] - 2021-06-11 + +- Sorts responsive classes with the same default sorter [#28](https://github.com/avencera/rustywind/issues/28) + ## [0.10.0] - 2021-06-10 - Run on multiple files or folders diff --git a/Cargo.lock b/Cargo.lock index a494cf1..e72f2ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,7 +345,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "rustywind" -version = "0.10.0" +version = "0.11.0" dependencies = [ "clap", "ignore", diff --git a/Cargo.toml b/Cargo.toml index 42a0d24..c447237 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Praveen Perera "] edition = "2018" name = "rustywind" -version = "0.10.0" +version = "0.11.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/npm/lib/postinstall.js b/npm/lib/postinstall.js index 66cc911..ef4f7b8 100644 --- a/npm/lib/postinstall.js +++ b/npm/lib/postinstall.js @@ -16,7 +16,7 @@ if (forceInstall) { console.log("--force, ignoring caches"); } -const VERSION = "v0.10.0"; +const VERSION = "v0.11.0"; const BIN_PATH = path.join(__dirname, "../bin"); process.on("unhandledRejection", (reason, promise) => { diff --git a/npm/package-lock.json b/npm/package-lock.json index d7bf727..d9adc0b 100644 --- a/npm/package-lock.json +++ b/npm/package-lock.json @@ -1,6 +1,6 @@ { "name": "rustywind", - "version": "0.10.0", + "version": "0.11.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/npm/package.json b/npm/package.json index 1fad013..4daccca 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "rustywind", - "version": "0.10.0", + "version": "0.11.0", "description": "CLI for organizing Tailwind CSS classes", "main": "lib/index.js", "typings": "lib/index.d.ts",