File tree Expand file tree Collapse file tree 9 files changed +52
-52
lines changed Expand file tree Collapse file tree 9 files changed +52
-52
lines changed Original file line number Diff line number Diff line change 1
1
name : Publish
2
2
on :
3
3
schedule :
4
- - cron : " 0 0 * * 1 " # midnight UTC on Monday
4
+ - cron : " 0 0 * * 2 " # midnight UTC on Tuesday
5
5
6
6
jobs :
7
7
publish :
38
38
sed -E -i '' $'s/(# Unreleased)/\\1\\\n\\\n# Release '"$VERSION/" RELEASES.md
39
39
git commit -am "Release $VERSION"
40
40
git tag "v$VERSION"
41
- git push --tags
42
41
cargo workspaces publish --from-git
42
+ git ps --tags
43
43
cargo workspaces version -ay --force '*' --include-merged-tags --no-git-tag --pre-id dev preminor
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
description = " Model of the Rust trait system"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -21,11 +21,11 @@ salsa = "0.10.0"
21
21
serde = " 1.0"
22
22
serde_derive = " 1.0"
23
23
24
- chalk-derive = { version = " 0.10.1 -dev" , path = " chalk-derive" }
25
- chalk-engine = { version = " 0.10.1 -dev" , path = " chalk-engine" }
26
- chalk-ir = { version = " 0.10.1 -dev" , path = " chalk-ir" }
27
- chalk-solve = { version = " 0.10.1 -dev" , path = " chalk-solve" }
28
- chalk-parse = { version = " 0.10.1 -dev" , path = " chalk-parse" }
29
- chalk-integration = { version = " 0.10.1 -dev" , path = " chalk-integration" }
24
+ chalk-derive = { version = " 0.11.0 -dev.0 " , path = " chalk-derive" }
25
+ chalk-engine = { version = " 0.11.0 -dev.0 " , path = " chalk-engine" }
26
+ chalk-ir = { version = " 0.11.0 -dev.0 " , path = " chalk-ir" }
27
+ chalk-solve = { version = " 0.11.0 -dev.0 " , path = " chalk-solve" }
28
+ chalk-parse = { version = " 0.11.0 -dev.0 " , path = " chalk-parse" }
29
+ chalk-integration = { version = " 0.11.0 -dev.0 " , path = " chalk-integration" }
30
30
31
31
[workspace ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-derive"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
description = " A helper crate for use by chalk crates for `derive` macros."
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-engine"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
description = " Core trait engine from Chalk project"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -15,5 +15,5 @@ default = []
15
15
[dependencies ]
16
16
rustc-hash = { version = " 1.1.0" }
17
17
18
- chalk-derive = { version = " 0.10.1 -dev" , path = " ../chalk-derive" }
19
- chalk-ir = { version = " 0.10.1 -dev" , path = " ../chalk-ir" }
18
+ chalk-derive = { version = " 0.11.0 -dev.0 " , path = " ../chalk-derive" }
19
+ chalk-ir = { version = " 0.11.0 -dev.0 " , path = " ../chalk-ir" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-integration"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
license = " Apache-2.0/MIT"
5
5
description = " Sample solver setup for Chalk"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -13,8 +13,8 @@ publish = false
13
13
string_cache = " 0.8.0"
14
14
salsa = " 0.10.0"
15
15
16
- chalk-derive = { version = " 0.10.1 -dev" , path = " ../chalk-derive" }
17
- chalk-engine = { version = " 0.10.1 -dev" , path = " ../chalk-engine" }
18
- chalk-ir = { version = " 0.10.1 -dev" , path = " ../chalk-ir" }
19
- chalk-solve = { version = " 0.10.1 -dev" , path = " ../chalk-solve" }
20
- chalk-parse = { version = " 0.10.1 -dev" , path = " ../chalk-parse" }
16
+ chalk-derive = { version = " 0.11.0 -dev.0 " , path = " ../chalk-derive" }
17
+ chalk-engine = { version = " 0.11.0 -dev.0 " , path = " ../chalk-engine" }
18
+ chalk-ir = { version = " 0.11.0 -dev.0 " , path = " ../chalk-ir" }
19
+ chalk-solve = { version = " 0.11.0 -dev.0 " , path = " ../chalk-solve" }
20
+ chalk-parse = { version = " 0.11.0 -dev.0 " , path = " ../chalk-parse" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-ir"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
description = " Chalk's internal representation of types, goals, and clauses"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -11,5 +11,5 @@ edition = "2018"
11
11
12
12
[dependencies ]
13
13
lazy_static = " 1.4.0"
14
- chalk-derive = { version = " 0.10.1 -dev" , path = " ../chalk-derive" }
14
+ chalk-derive = { version = " 0.11.0 -dev.0 " , path = " ../chalk-derive" }
15
15
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-parse"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
description = " Parser for the Chalk project"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chalk-solve"
3
- version = " 0.10.1 -dev"
3
+ version = " 0.11.0 -dev.0 "
4
4
description = " Combines the chalk-engine with chalk-ir"
5
5
license = " Apache-2.0/MIT"
6
6
authors = [" Rust Compiler Team" , " Chalk developers" ]
@@ -15,9 +15,9 @@ itertools = "0.9.0"
15
15
petgraph = " 0.5.0"
16
16
rustc-hash = { version = " 1.0.0" }
17
17
18
- chalk-derive = { version = " 0.10.1 -dev" , path = " ../chalk-derive" }
19
- chalk-engine = { version = " 0.10.1 -dev" , path = " ../chalk-engine" , optional = true }
20
- chalk-ir = { version = " 0.10.1 -dev" , path = " ../chalk-ir" }
18
+ chalk-derive = { version = " 0.11.0 -dev.0 " , path = " ../chalk-derive" }
19
+ chalk-engine = { version = " 0.11.0 -dev.0 " , path = " ../chalk-engine" , optional = true }
20
+ chalk-ir = { version = " 0.11.0 -dev.0 " , path = " ../chalk-ir" }
21
21
22
22
[dev-dependencies ]
23
23
chalk-integration = { path = " ../chalk-integration" }
You can’t perform that action at this time.
0 commit comments