Skip to content

Commit eae46ae

Browse files
committed
Bump version
1 parent b344d87 commit eae46ae

File tree

10 files changed

+25
-12
lines changed

10 files changed

+25
-12
lines changed

Cargo.lock

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

Makefile.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,19 @@ fn update_docs(old_version: &str, new_version: &Version) {
270270
Err(e) => panic!("{:?}", e),
271271
}
272272
}
273+
274+
for entry in glob("docs/docset.yml").unwrap() {
275+
match entry {
276+
Ok(path) => {
277+
let mut content = read_file(&path);
278+
content = content.replace(
279+
&format!("version: \"{}\"", old_version),
280+
&format!("version: \"{}\"", new_version.to_string()));
281+
write_file(&path, content);
282+
}
283+
Err(e) => panic!("{:?}", e),
284+
}
285+
}
273286
}
274287
275288
fn update_cargo_toml(new_version: &Version) -> String {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ that is compatible with the version of Elasticsearch you're using
4646

4747
```toml
4848
[dependencies]
49-
elasticsearch = "9.0.0-alpha.1"
49+
elasticsearch = "9.1.0-alpha.1"
5050
```
5151

5252
The following _optional_ dependencies may also be useful to create requests and read responses

api_generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "api_generator"
3-
version = "9.0.0-alpha.1"
3+
version = "9.1.0-alpha.1"
44
publish = false
55
description = "Generates source code for elasticsearch package, from the Elasticsearch REST API specs"
66
repository = "https://github.com/elastic/elasticsearch-rs"

docs/docset.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ toc:
77
- toc: reference
88
subs:
99
es: "Elasticsearch"
10-
version: "9.0.0-alpha.1"
10+
version: "9.1.0-alpha.1"

elasticsearch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elasticsearch"
3-
version = "9.0.0-alpha.1"
3+
version = "9.1.0-alpha.1"
44
edition = "2018"
55
authors = ["Elastic and Contributors"]
66
description = "Official Elasticsearch Rust client"

elasticsearch/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//!
6363
//! ```toml,no_run
6464
//! [dependencies]
65-
//! elasticsearch = "9.0.0-alpha.1"
65+
//! elasticsearch = "9.1.0-alpha.1"
6666
//! ```
6767
//! The following _optional_ dependencies may also be useful to create requests and read responses
6868
//!

examples/wasm_fetch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "example_wasm_fetch"
3-
version = "0.1.0"
3+
version = "9.1.0-alpha.1"
44
publish = false
55
authors = ["Elastic and Contributors"]
66
edition = "2021"

xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xtask"
3-
version = "9.0.0-alpha.1"
3+
version = "9.1.0-alpha.1"
44
edition = "2018"
55
publish = false
66

yaml_test_runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yaml_test_runner"
3-
version = "9.0.0-alpha.1"
3+
version = "9.1.0-alpha.1"
44
publish = false
55
edition = "2018"
66
authors = ["Elastic and Contributors"]

0 commit comments

Comments
 (0)