Skip to content

Commit

Permalink
Update Cargo.toml and CHANGELOG to prepare for v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fxpineau committed Mar 11, 2024
1 parent 73063b1 commit ea193f2
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 6 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
# `votable` Change Log

## 0.5.0

Released 2024-03-11

### Added

* Add genericity and remove (some) duplicated code
* Add support for `CDATA` in `TD` tags
* See `votcli` changelog


## 0.4.0

Released 2024-02-06

### Added

* Enrich API with elements such as `push_elem` or `set_xxçby_ref` and re-export.
* Enrich API with elements such as `push_elem` or `set_xx_by_ref` and re-export.
* Provide with a MIVOT `DoNothing` visitor
* Provide with a `VOTableVisitor` trait and `visitor` methods on the ful VOTable
* Add methods to merge together two `Fields`
Expand All @@ -15,7 +26,7 @@ Released 2024-02-06

* `Version` and `xmlns` are now mandatory in VOTable (with v1.4 as edfault)
* Add `xmlns:xsi` and `xsi:schemaLocation` in VOTable optional attributes (instead of extra)
* Add logger to control stderr messages
* Add logger to control `stderr` messages


## 0.3.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "votable"
version = "0.4.0"
version = "0.5.0"
authors = [
"F.-X. Pineau <[email protected]>",
"T. Dumortier <[email protected]>"
Expand Down Expand Up @@ -71,4 +71,4 @@ strip = true # Automatically strip symbols from the binary.
opt-level = 3 # 1,2,3,s,z Optimize for size instead of speed
lto = true
panic = "abort"
codegen-units = 1
codegen-units = 1
11 changes: 11 additions & 0 deletions crates/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# `moc-cli` Change Log

## 0.5.0

Released 2023-03-11

* ⚠️ BREAKING: new options and hence new command layout
* Add the 'convert' sub-command, and conversion from XML to CSV
* Add the 'sconvert' sub-command for streaming conversion
+ add 'parallel' for multi-threaded streaming conversion
* Add 'get' command to retrieve some metadata or the VOTable structure


## 0.4.0

Released 2023-02-06
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "votable-cli"
version = "0.4.0"
version = "0.5.0"
authors = ["F.-X. Pineau <[email protected]>"]
description = "Command-line to extract information from IVOA VOTables and to convert VOTable back and forth in XML, JSON, YAML, TOML (and to CSV) while preserving all elements (except in CSV)."
license = "MIT OR Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions crates/wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# `vot-wasm` Change Log

## 0.45.0

Released 2023-03-11

* Add support for `CDATA` in `TD` tags


## 0.4.0

Released 2023-02-06
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "votable-wasm"
version = "0.4.0"
version = "0.5.0"
authors = ["F.-X. Pineau <[email protected]>"]
description = "Convert, in WASM, IVOA VOTables in XML, JSON, YAML and TOML"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit ea193f2

Please sign in to comment.