Skip to content

Commit

Permalink
chore: Bump version to 0.6.1 (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored Mar 13, 2023
1 parent 5584609 commit ef064e1
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 29 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 14 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
[workspace]
members = [
"prql-compiler",
"prql-compiler/examples/compile-files",
"prql-compiler/prql-compiler-macros",
"prql-compiler/prqlc",
# The main crate
"prql-compiler", #
# The CLI
"prql-compiler/prqlc", #
# Macros
"prql-compiler/prql-compiler-macros", #
# An example
"prql-compiler/examples/compile-files", #
# Bindings
"bindings/prql-elixir/native/prql",
"bindings/prql-java",
"bindings/prql-lib",
"bindings/prql-js",
"bindings/prql-python",
"bindings/prql-lib",
"bindings/prql-python", #
# The book / docs
"web/book",
"bindings/prql-elixir/native/prql",
]
# Note we don't have a `default-members = ["prql-compiler"]`, since that causes
# commands like `cargo test` to only run tests from the default package. And
Expand All @@ -21,7 +27,7 @@ edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
rust-version = "1.65.0"
version = "0.6.0"
version = "0.6.1"

[profile.release.package.prql-js]
# Tell `rust-js` to optimize for small code size.
Expand All @@ -30,4 +36,3 @@ opt-level = "s"
[workspace.metadata.release]
allow-branch = ["*"]
consolidate-commits = true
pre-release-commit-message = "chore: Release {{version}}"
2 changes: 1 addition & 1 deletion bindings/prql-elixir/native/prql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name = "prql"
path = "src/lib.rs"

[dependencies]
prql-compiler = {path = "../../../../prql-compiler", default-features = false, version = "0.6.0"}
prql-compiler = {path = "../../../../prql-compiler", default-features = false, version = "0.6.1" }

# See Readme for details on Mac
[target.'cfg(not(any(target_family="wasm", target_os = "macos")))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bindings/prql-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ search = '(\s+"prql-js",)\n(\s+"version": )"[\d\.]+"'

[[package.metadata.release.pre-release-replacements]]
exactly = 1
file = "../playground/package-lock.json"
file = "../../web/playground/package-lock.json"
replace = '''$1"{{version}}"'''
search = '( "../prql-js": \{\n "version": )"[\d\.]+"'
4 changes: 2 additions & 2 deletions bindings/prql-js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/prql-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"test": "mocha tests"
},
"types": "dist/node/prql_js.d.ts",
"version": "0.6.0"
"version": "0.6.1"
}
2 changes: 1 addition & 1 deletion prql-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ name = "bench"
# to `prql-compiler`? We can place it there when that's fixed.
[[package.metadata.release.pre-release-replacements]]
exactly = 1
file = "../book/src/language-features/target.md"
file = "../web/book/src/language-features/target.md"
replace = 'prql version:"{{version}}"'
search = 'prql version:"[\d.]+"'
2 changes: 1 addition & 1 deletion prql-compiler/prql-compiler-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ proc_macro = true
test = false

[dependencies]
prql-compiler = {path = "..", default-features = false, version = "0.6.0" }
prql-compiler = {path = "..", default-features = false, version = "0.6.1" }
# Was getting build errors with more recent versions; can remove pin if it
# successfully builds.
syn = "=1.0.107"
Expand Down
2 changes: 1 addition & 1 deletion prql-compiler/prqlc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env_logger = {version = "0.10.0", features = ["color"]}
itertools = "0.10.3"
minijinja = {version = "0.30.4", features = ["unstable_machinery"]}
notify = "^5.1.0"
prql-compiler = {path = '..', version = "0.6.0" }
prql-compiler = {path = '..', version = "0.6.1" }
regex = {version = "1.7.1", features = ["std", "unicode"]}
serde = "^1"
serde_json = "1.0.81"
Expand Down
2 changes: 1 addition & 1 deletion web/book/src/language-features/target.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ very welcome.
PRQL allows specifying a version of the language in the PRQL header, like:

```prql_no_fmt
prql version:"0.6.0"
prql version:"0.6.1"
from employees
```
Expand Down
2 changes: 1 addition & 1 deletion web/playground/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ef064e1

Please sign in to comment.