Skip to content

Commit

Permalink
Release irox-tools v0.2.1, irox-carto v0.2.1, irox-egui-extras v0.2.1…
Browse files Browse the repository at this point in the history
…, irox-gpx v0.1.0, irox-types v0.2.1, irox-structs_derive v0.2.1, irox-raymarine-sonar v0.1.0, irox-stats v0.2.1, irox-winlocation-api v0.1.1, irox v0.2.1
  • Loading branch information
spmadden committed Oct 8, 2023
1 parent 8b615cc commit 68d770b
Show file tree
Hide file tree
Showing 21 changed files with 449 additions and 46 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions data-formats/gpx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@


## v0.1.0 (2023-10-08)

### Chore

- <csr-id-8b615cc2bb578961c2cd8895814932c9d84ee294/> adding empty changelogs to prep for release

### New Features

- <csr-id-b378b9da294474e73936e4e52bba9ae103fc1590/> new GPX reader/writer module

### Other

- <csr-id-31ab14449ae83ce6fbe3959461aa688fb3c1777c/> started reader impl

### Commit Statistics

<csr-read-only-do-not-edit/>

- 3 commits contributed to the release.
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **Uncategorized**
- Adding empty changelogs to prep for release ([`8b615cc`](https://github.com/spmadden/irox/commit/8b615cc2bb578961c2cd8895814932c9d84ee294))
- Started reader impl ([`31ab144`](https://github.com/spmadden/irox/commit/31ab14449ae83ce6fbe3959461aa688fb3c1777c))
- New GPX reader/writer module ([`b378b9d`](https://github.com/spmadden/irox/commit/b378b9da294474e73936e4e52bba9ae103fc1590))
</details>

42 changes: 21 additions & 21 deletions data-formats/gpx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "irox-gpx"
description = "GPX format Encoders and Decoders for GPS Devices"
keywords = ["irox", "gpx", "encoder", "decoder", "gps"]
categories = ["aerospace", "parser-implementations", "science::geo", "encoding"]
version= "0.1.0"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
license.workspace = true
exclude.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
xml.workspace = true
log.workspace = true
time.workspace = true
irox-units.workspace = true
irox-carto.workspace = true
irox-tools.workspace = true
[package]
name = "irox-gpx"
description = "GPX format Encoders and Decoders for GPS Devices"
keywords = ["irox", "gpx", "encoder", "decoder", "gps"]
categories = ["aerospace", "parser-implementations", "science::geo", "encoding"]
version= "0.1.0"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
license.workspace = true
exclude.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
xml.workspace = true
log.workspace = true
time.workspace = true
irox-units.workspace = true
irox-carto.workspace = true
irox-tools.workspace = true
44 changes: 44 additions & 0 deletions data-formats/raymarine-sonar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@


## v0.1.0 (2023-10-08)

### Chore

- <csr-id-8b615cc2bb578961c2cd8895814932c9d84ee294/> adding empty changelogs to prep for release
- <csr-id-6044deb9138bcdad7cf892d1fe25e6ee84d4db04/> fixup copyright in headers

### New Features

- <csr-id-a698240b8770f73bbd3bdae71583818d86271764/> write out gpx file
- <csr-id-4ae68a2a460674837bc8ff4cf7282ae69e60bbbc/> new raymarine sonar converter module

### Other

- <csr-id-17196e558011bd32abec2109a01e9add4b829d78/> much cleaner parser impls
- <csr-id-461eab91332d6e02eb32cef638fdd1bc67668c3b/> generating valid-ish points now
- <csr-id-f8344d4d68301e9f5d5769ee5b44e0f620de9b7d/> more progress with the sonar converter

### Commit Statistics

<csr-read-only-do-not-edit/>

- 7 commits contributed to the release over the course of 8 calendar days.
- 7 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **Uncategorized**
- Adding empty changelogs to prep for release ([`8b615cc`](https://github.com/spmadden/irox/commit/8b615cc2bb578961c2cd8895814932c9d84ee294))
- Write out gpx file ([`a698240`](https://github.com/spmadden/irox/commit/a698240b8770f73bbd3bdae71583818d86271764))
- Fixup copyright in headers ([`6044deb`](https://github.com/spmadden/irox/commit/6044deb9138bcdad7cf892d1fe25e6ee84d4db04))
- Much cleaner parser impls ([`17196e5`](https://github.com/spmadden/irox/commit/17196e558011bd32abec2109a01e9add4b829d78))
- Generating valid-ish points now ([`461eab9`](https://github.com/spmadden/irox/commit/461eab91332d6e02eb32cef638fdd1bc67668c3b))
- More progress with the sonar converter ([`f8344d4`](https://github.com/spmadden/irox/commit/f8344d4d68301e9f5d5769ee5b44e0f620de9b7d))
- New raymarine sonar converter module ([`4ae68a2`](https://github.com/spmadden/irox/commit/4ae68a2a460674837bc8ff4cf7282ae69e60bbbc))
</details>

2 changes: 1 addition & 1 deletion data-formats/raymarine-sonar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ irox-gpx = { workspace = true, optional = true }

[[bin]]
name = "sonar_sdf_convert"
required-features = ["cli"]
required-features = ["cli"]
52 changes: 51 additions & 1 deletion interfaces/win-location-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,56 @@



## v0.1.1 (2023-10-08)

### New Features

- <csr-id-9e06dc9c340a48f7a36f1510186e2fed5a151f76/> add ability to watch location status
- <csr-id-05b284ba559e96c77f9152be01f54ce1af31aea5/> adding request for geolocation status

### Bug Fixes

- <csr-id-c368a7f0d50cbf852b3068d6be18de02ae5cc2b8/> switching to manual convert of nanos in timestamp
- <csr-id-db5ef9abe171c2d02ad8d6066687097daf1a37a3/> using micros instead of nanos for wintime
- <csr-id-099c216acb827aae3d7f31483b14c2a707f7186a/> and yet another fix for the timestamp
- <csr-id-f9777b281a1b997d02de04131dd1dbc8e7d1d54c/> actually add timestamp
- <csr-id-0ca8619638f1928d2bf402550f99972e79140016/> add timestamp to coordinate if not present already
- <csr-id-4670aaaa26d055e080f6a72bdf86da3293d6a409/> check for NaN & Inf in spd and hdg
- <csr-id-01adbbd31fe97922c50c2b15414bc7cc181467f2/> add additional trace logging to the location handler

### Commit Statistics

<csr-read-only-do-not-edit/>

- 9 commits contributed to the release over the course of 19 calendar days.
- 19 days passed between releases.
- 9 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **Uncategorized**
- Switching to manual convert of nanos in timestamp ([`c368a7f`](https://github.com/spmadden/irox/commit/c368a7f0d50cbf852b3068d6be18de02ae5cc2b8))
- Using micros instead of nanos for wintime ([`db5ef9a`](https://github.com/spmadden/irox/commit/db5ef9abe171c2d02ad8d6066687097daf1a37a3))
- And yet another fix for the timestamp ([`099c216`](https://github.com/spmadden/irox/commit/099c216acb827aae3d7f31483b14c2a707f7186a))
- Actually add timestamp ([`f9777b2`](https://github.com/spmadden/irox/commit/f9777b281a1b997d02de04131dd1dbc8e7d1d54c))
- Add ability to watch location status ([`9e06dc9`](https://github.com/spmadden/irox/commit/9e06dc9c340a48f7a36f1510186e2fed5a151f76))
- Add timestamp to coordinate if not present already ([`0ca8619`](https://github.com/spmadden/irox/commit/0ca8619638f1928d2bf402550f99972e79140016))
- Adding request for geolocation status ([`05b284b`](https://github.com/spmadden/irox/commit/05b284ba559e96c77f9152be01f54ce1af31aea5))
- Check for NaN & Inf in spd and hdg ([`4670aaa`](https://github.com/spmadden/irox/commit/4670aaaa26d055e080f6a72bdf86da3293d6a409))
- Add additional trace logging to the location handler ([`01adbbd`](https://github.com/spmadden/irox/commit/01adbbd31fe97922c50c2b15414bc7cc181467f2))
</details>

## v0.1.0 (2023-09-18)

<csr-id-f03d8a3ec997d53470bfdeb5e76b71925aac3f10/>
<csr-id-80d2b88bdcb553faaeafc09673c31d7ebedafd19/>
<csr-id-1a365333397b02a5f911d0897c3bf0c80f6c2b80/>

### Chore

- <csr-id-f03d8a3ec997d53470bfdeb5e76b71925aac3f10/> clean up code with additional lints
Expand All @@ -23,7 +72,7 @@

<csr-read-only-do-not-edit/>

- 8 commits contributed to the release over the course of 13 calendar days.
- 9 commits contributed to the release over the course of 15 calendar days.
- 8 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

Expand All @@ -34,6 +83,7 @@
<details><summary>view details</summary>

* **Uncategorized**
- Release irox-enums_derive v0.2.0, irox-enums v0.2.0, irox-tools v0.2.0, irox-units v0.2.0, irox-carto v0.2.0, irox-csv v0.2.0, irox-egui-extras v0.2.0, irox-networking v0.2.0, irox-types v0.2.0, irox-influxdb_v1 v0.2.0, irox-structs_derive v0.2.0, irox-structs v0.2.0, irox-nmea0183 v0.1.0, irox-sirf v0.2.0, irox-stats v0.2.0, irox-winlocation-api v0.1.0, irox v0.2.0, safety bump 10 crates ([`6a72204`](https://github.com/spmadden/irox/commit/6a722046661ceef02a66c2067e2c5c15ce102e04))
- Clean up code with additional lints ([`f03d8a3`](https://github.com/spmadden/irox/commit/f03d8a3ec997d53470bfdeb5e76b71925aac3f10))
- Update cargo.tomls to add repository ([`80d2b88`](https://github.com/spmadden/irox/commit/80d2b88bdcb553faaeafc09673c31d7ebedafd19))
- Setting up blank changelogs for the modules ([`1a36533`](https://github.com/spmadden/irox/commit/1a365333397b02a5f911d0897c3bf0c80f6c2b80))
Expand Down
2 changes: 1 addition & 1 deletion interfaces/win-location-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "irox-winlocation-api"
description = "Rust ergonomic adapter for the Windows Devices Location API"
keywords = ["irox", "windows", "api-bindings", "gps", "geospatial"]
categories = ["api-bindings", "science::geo", "aerospace::protocols"]
version= "0.1.0"
version= "0.1.1"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
Expand Down
41 changes: 40 additions & 1 deletion irox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,45 @@



## v0.2.1 (2023-10-08)

### Chore

- <csr-id-3300f2ad844907609b1fc6cdaa5b632ae28cde95/> adding raymarine-sonar converter to irox
- <csr-id-3ebb2f1f68bb1cb598bcdf651fd0656702e03aaf/> adding missing modules to lib

### New Features

- <csr-id-b378b9da294474e73936e4e52bba9ae103fc1590/> new GPX reader/writer module

### Commit Statistics

<csr-read-only-do-not-edit/>

- 3 commits contributed to the release over the course of 6 calendar days.
- 19 days passed between releases.
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **Uncategorized**
- New GPX reader/writer module ([`b378b9d`](https://github.com/spmadden/irox/commit/b378b9da294474e73936e4e52bba9ae103fc1590))
- Adding raymarine-sonar converter to irox ([`3300f2a`](https://github.com/spmadden/irox/commit/3300f2ad844907609b1fc6cdaa5b632ae28cde95))
- Adding missing modules to lib ([`3ebb2f1`](https://github.com/spmadden/irox/commit/3ebb2f1f68bb1cb598bcdf651fd0656702e03aaf))
</details>

## v0.2.0 (2023-09-18)

<csr-id-80d2b88bdcb553faaeafc09673c31d7ebedafd19/>
<csr-id-1a365333397b02a5f911d0897c3bf0c80f6c2b80/>
<csr-id-6fa2e180f0c44bb4cbf76738acdda5631ecea20e/>
<csr-id-49d55665ffd9ebcfe0394e40cb36bcc35a6a72f9/>

### Chore

- <csr-id-80d2b88bdcb553faaeafc09673c31d7ebedafd19/> update cargo.tomls to add repository
Expand All @@ -26,7 +64,7 @@

<csr-read-only-do-not-edit/>

- 8 commits contributed to the release over the course of 33 calendar days.
- 9 commits contributed to the release over the course of 35 calendar days.
- 8 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

Expand All @@ -37,6 +75,7 @@
<details><summary>view details</summary>

* **Uncategorized**
- Release irox-enums_derive v0.2.0, irox-enums v0.2.0, irox-tools v0.2.0, irox-units v0.2.0, irox-carto v0.2.0, irox-csv v0.2.0, irox-egui-extras v0.2.0, irox-networking v0.2.0, irox-types v0.2.0, irox-influxdb_v1 v0.2.0, irox-structs_derive v0.2.0, irox-structs v0.2.0, irox-nmea0183 v0.1.0, irox-sirf v0.2.0, irox-stats v0.2.0, irox-winlocation-api v0.1.0, irox v0.2.0, safety bump 10 crates ([`6a72204`](https://github.com/spmadden/irox/commit/6a722046661ceef02a66c2067e2c5c15ce102e04))
- Update cargo.tomls to add repository ([`80d2b88`](https://github.com/spmadden/irox/commit/80d2b88bdcb553faaeafc09673c31d7ebedafd19))
- Setting up blank changelogs for the modules ([`1a36533`](https://github.com/spmadden/irox/commit/1a365333397b02a5f911d0897c3bf0c80f6c2b80))
- Update README.md and Cargo.toml ([`1d10250`](https://github.com/spmadden/irox/commit/1d102501e7a44c37461e77184031897b0ab07bc0))
Expand Down
2 changes: 1 addition & 1 deletion irox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "irox"
description = "irox Rust Tools & Libraries"
keywords = ["irox"]
categories = ["aerospace", "science", "mathematics"]
version= "0.2.0"
version= "0.2.1"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
Expand Down
Loading

0 comments on commit 68d770b

Please sign in to comment.