This is an automated email from the ASF dual-hosted git repository.

etudenhoefner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 07c9e0f  Fix the REST spec version (#198)
07c9e0f is described below

commit 07c9e0fe0a6d6cd1aaf235b5c62a4e5482bc5777
Author: Fokko Driesprong <[email protected]>
AuthorDate: Mon Feb 19 11:01:26 2024 +0100

    Fix the REST spec version (#198)
    
    This number indicates from which release the code was generated.
    For example, currently new endpoints are added to the spec, but
    they are not supported by iceberg-rust yet.
---
 crates/catalog/rest/src/catalog.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/catalog/rest/src/catalog.rs 
b/crates/catalog/rest/src/catalog.rs
index 5224a85..686b88e 100644
--- a/crates/catalog/rest/src/catalog.rs
+++ b/crates/catalog/rest/src/catalog.rs
@@ -41,7 +41,7 @@ use self::_serde::{
     RenameTableRequest, NO_CONTENT, OK,
 };
 
-const ICEBERG_REST_SPEC_VERSION: &str = "1.14";
+const ICEBERG_REST_SPEC_VERSION: &str = "0.14.1";
 const CARGO_PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
 const PATH_V1: &str = "v1";
 

Reply via email to