Skip to content

Commit

Permalink
chore: Bump versions to 0.7.1 (#2383)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored Apr 4, 2023
1 parent 3fa964c commit eccd57d
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 26 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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
rust-version = "1.65.0"
version = "0.7.0"
version = "0.7.1"

[profile.release.package.prql-js]
# Tell `rust-js` to optimize for small code size.
Expand Down
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.7.0" }
prql-compiler = {path = "../../../../prql-compiler", default-features = false, version = "0.7.1" }

# See Readme for details on Mac
[target.'cfg(not(any(target_family="wasm", target_os = "macos")))'.dependencies]
Expand Down
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 @@ -25,5 +25,5 @@
"test": "mocha tests"
},
"types": "dist/node/prql_js.d.ts",
"version": "0.7.0"
"version": "0.7.1"
}
11 changes: 6 additions & 5 deletions prql-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ insta = {version = "1.29", features = ["colors", "glob", "yaml"]}
[target.'cfg(not(target_family="wasm"))'.dev-dependencies]
chrono = {version = "0.4", features = [], default-features = false}
criterion = "0.4.0"
pretty_assertions = "1.3.0"
rusqlite = {version = "0.29.0", features = ["bundled", "csvtab"]}
csv = "1.2"
mysql = "23"
pg_bigdecimal = "0.1"
postgres = "0.19"
mysql = "23"
pretty_assertions = "1.3.0"
rusqlite = {version = "0.29.0", features = ["bundled", "csvtab"]}
tiberius = {version = "0.12", features = ["sql-browser-tokio", "bigdecimal", "time"]}
tokio = {version = "1", features = ["full"]}
tokio-util = { version = "0.7", features = ["compat"] }
csv = "1.2"
tokio-util = {version = "0.7", features = ["compat"]}

# Re-enable on windows when duckdb supports it
# https://github.com/wangfenjin/duckdb-rs/issues/62
Expand All @@ -69,6 +69,7 @@ name = "bench"

# Putting this in the workspace root causes it to refer to the path relative
# to `prql-compiler`? We can place it there when that's fixed.

[[package.metadata.release.pre-release-replacements]]
exactly = 1
file = "../web/book/src/language-features/target.md"
Expand Down
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.7.0" }
prql-compiler = {path = "..", default-features = false, version = "0.7.1" }
syn = "2.0.2"

[package.metadata.release]
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 @@ -21,7 +21,7 @@ env_logger = {version = "0.10.0", features = ["color"]}
itertools = "0.10.3"
minijinja = {version = "0.31.0", features = ["unstable_machinery"]}
notify = "^5.1.0"
prql-compiler = {path = '..', version = "0.7.0" }
prql-compiler = {path = '..', version = "0.7.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.7.0"
prql version:"0.7.1"
from employees
```
Expand Down
4 changes: 2 additions & 2 deletions web/playground/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 web/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"test": "npm run genBook && react-scripts test",
"genBook": "node generateBook.js"
},
"version": "0.7.0"
"version": "0.7.1"
}

0 comments on commit eccd57d

Please sign in to comment.