diff --git a/README.md b/README.md index 318fd468..d23e22b2 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ that is compatible with the version of Elasticsearch you're using ```toml [dependencies] -elasticsearch = "7.8.0-alpha.1" +elasticsearch = "7.8.1-alpha.1" ``` The following _optional_ dependencies may also be useful to create requests and read responses diff --git a/api_generator/Cargo.toml b/api_generator/Cargo.toml index 5ffabee6..9dfce5db 100644 --- a/api_generator/Cargo.toml +++ b/api_generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api_generator" -version = "7.8.0-alpha.1" +version = "7.8.1-alpha.1" description = "Generates source code for elasticsearch package, from the Elasticsearch REST API specs" authors = ["Elastic and Contributors"] edition = "2018" diff --git a/docs/index.asciidoc b/docs/index.asciidoc index d8c790c0..808224c9 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -42,7 +42,7 @@ that is compatible with the version of Elasticsearch you're using [source,toml] ---- [dependencies] -elasticsearch = "7.8.0-alpha.1" +elasticsearch = "7.8.1-alpha.1" ---- The following _optional_ dependencies may also be useful to create requests and read responses diff --git a/elasticsearch/Cargo.toml b/elasticsearch/Cargo.toml index e38261e6..b911e860 100644 --- a/elasticsearch/Cargo.toml +++ b/elasticsearch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elasticsearch" -version = "7.8.0-alpha.1" +version = "7.8.1-alpha.1" edition = "2018" authors = ["Elastic and Contributors"] description = "Official Elasticsearch Rust client" diff --git a/elasticsearch/src/lib.rs b/elasticsearch/src/lib.rs index a5f1016e..cf046443 100644 --- a/elasticsearch/src/lib.rs +++ b/elasticsearch/src/lib.rs @@ -61,7 +61,7 @@ //! //! ```toml,no_run //! [dependencies] -//! elasticsearch = "7.8.0-alpha.1" +//! elasticsearch = "7.8.1-alpha.1" //! ``` //! The following _optional_ dependencies may also be useful to create requests and read responses //! diff --git a/yaml_test_runner/Cargo.toml b/yaml_test_runner/Cargo.toml index d632004c..4d9df1d6 100644 --- a/yaml_test_runner/Cargo.toml +++ b/yaml_test_runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaml_test_runner" -version = "7.8.0-alpha.1" +version = "7.8.1-alpha.1" edition = "2018" authors = ["Elastic and Contributors"] description = "Generates and runs tests from Elasticsearch's YAML test specs"