Skip to content

Commit 6fb65ab

Browse files
committed
Bump nightly version
It's been 6 weeks! We're still 100% compatible with no code changes (other than the compile test)
1 parent 4d0f60a commit 6fb65ab

6 files changed

Lines changed: 39 additions & 8 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dist: trusty
44
rust:
55
- stable
66
- beta
7-
- nightly-2016-07-07
7+
- nightly-2016-08-18
88
- nightly
99
addons:
1010
postgresql: '9.4'

diesel_cli/Cargo.lock

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

diesel_codegen_syntex/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ repository = "https://github.com/diesel-rs/diesel/tree/master/diesel_codegen"
1111
keywords = ["orm", "database", "postgres", "sql", "codegen"]
1212

1313
[build-dependencies]
14-
syntex = { version = ">= 0.37.0, < 0.39.0", optional = true }
15-
syntex_syntax = { version = ">= 0.37.0, < 0.39.0", optional = true }
14+
syntex = { version = ">= 0.37.0, < 0.42.0", optional = true }
15+
syntex_syntax = { version = ">= 0.37.0, < 0.42.0", optional = true }
1616

1717
[dependencies]
18-
syntex = { version = ">= 0.37.0, < 0.39.0", optional = true }
19-
syntex_syntax = { version = ">= 0.37.0, < 0.39.0", optional = true }
18+
syntex = { version = ">= 0.37.0, < 0.42.0", optional = true }
19+
syntex_syntax = { version = ">= 0.37.0, < 0.42.0", optional = true }
2020
diesel = { version = "0.7.0", default-features = false }
2121

2222
[dev-dependencies]

diesel_compile_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
66
[dependencies]
77
diesel = { path = "../diesel", features = ["sqlite", "postgres"] }
88
diesel_codegen = { path = "../diesel_codegen", features = ["postgres", "sqlite"] }
9-
compiletest_rs = "0.2.0"
9+
compiletest_rs = "=0.2.1"

diesel_compile_tests/tests/compile-fail/find_requires_correct_type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn main() {
2424
//~| ERROR E0277
2525
//~| ERROR E0277
2626
string_primary_key::table.find(1).first(&connection).unwrap();
27-
//~^ ERROR no method named `first` found for type `diesel::query_source::filter::FilteredQuerySource<string_primary_key::table, diesel::expression::predicates::Eq<string_primary_key::columns::id, _>>` in the current scope
27+
//~^ ERROR no method named `first` found for type `diesel::query_source::filter::FilteredQuerySource<string_primary_key::table, diesel::expression::predicates::Eq<string_primary_key::columns::id, {integer}>>` in the current scope
2828
//~| ERROR E0277
2929
//~| ERROR E0277
3030
//~| ERROR E0277

diesel_tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
66
build = "build.rs"
77

88
[build-dependencies]
9-
syntex = { version = "0.38.0", optional = true }
9+
syntex = { version = "0.41.0", optional = true }
1010
diesel_codegen_syntex = { path = "../diesel_codegen_syntex", optional = true }
1111
dotenv_codegen = { version = "0.9.0", optional = true }
1212
diesel = { path = "../diesel", default-features = false }

0 commit comments

Comments
 (0)