diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e74e09..795098c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # `votable` Change Log +## 0.2.3 + +Released 2023-05-01 + +* Accept CDATA in 'Info', 'Desciption', 'Link', 'ParamRef' and 'FieldRef' content +* Accepth empty 'precision' and 'width' attributes + ## 0.2.2 Released 2023-05-01 diff --git a/Cargo.toml b/Cargo.toml index 5e3aa49..790db66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "votable" -version = "0.2.2" +version = "0.2.3" authors = [ "F.-X. Pineau ", "T. Dumortier " diff --git a/crates/cli/CHANGELOG.md b/crates/cli/CHANGELOG.md index 2b4a041..987bfb4 100644 --- a/crates/cli/CHANGELOG.md +++ b/crates/cli/CHANGELOG.md @@ -1,5 +1,44 @@ # `moc-cli` Change Log +## 0.2.3 + +Released 2023-05-01 + +* Accept CDATA in 'Info', 'Desciption', 'Link', 'ParamRef' and 'FieldRef' content +* Accepth empty 'precision' and 'width' attributes + +## 0.2.2 + +Released 2023-05-01 + +* Accept VOTables 1.0 +* Add the deprecated "DEFINITIONS" tag + + +## 0.2.1 + +Released 2023-04-25 + +* Accept VOTables 1.1 and 1.2 +* Fix error while parsing PARAM +* Fix error with empty fields (?) + + +## 0.2.0 + +Released 2023-03-30 + +### Added + +* class `VOTableIterator` to iterate externally on a VOTable + tables and table rows + +### Bug correction + +* Now works with namespaces (simply ignoring them) +* Support PARAM containing sub-elements in GROUP + + ## 0.1.1-alpha Released 2022-10-10. diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 71a854e..9a17179 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "votable-cli" -version = "0.2.0" +version = "0.2.3" authors = ["F.-X. Pineau "] description = "Command-line to convert IVOA VOTables in XML, JSON, YAML and TOML" license = "MIT OR Apache-2.0" diff --git a/crates/wasm/CHANGELOG.md b/crates/wasm/CHANGELOG.md index 7396445..b16b517 100644 --- a/crates/wasm/CHANGELOG.md +++ b/crates/wasm/CHANGELOG.md @@ -1,5 +1,44 @@ # `vot-wasm` Change Log +## 0.2.3 + +Released 2023-05-01 + +* Accept CDATA in 'Info', 'Desciption', 'Link', 'ParamRef' and 'FieldRef' content +* Accepth empty 'precision' and 'width' attributes + +## 0.2.2 + +Released 2023-05-01 + +* Accept VOTables 1.0 +* Add the deprecated "DEFINITIONS" tag + + +## 0.2.1 + +Released 2023-04-25 + +* Accept VOTables 1.1 and 1.2 +* Fix error while parsing PARAM +* Fix error with empty fields (?) + + +## 0.2.0 + +Released 2023-03-30 + +### Added + +* class `VOTableIterator` to iterate externally on a VOTable + tables and table rows + +### Bug correction + +* Now works with namespaces (simply ignoring them) +* Support PARAM containing sub-elements in GROUP + + ## 0.1.1-alpha Released 2022-10-10. diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 958a953..9a1dd9c 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "votable-wasm" -version = "0.2.0" +version = "0.2.3" authors = ["F.-X. Pineau "] description = "Convert, in WASM, IVOA VOTables in XML, JSON, YAML and TOML" license = "MIT OR Apache-2.0"