From 7b595c857cb6ebd15fe19de5ce3adf0fde53e462 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 25 Jan 2026 17:49:18 +0000 Subject: [PATCH 1/2] chore: release v0.0.7 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1b2c928 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.7](https://github.com/zheylmun/compass_data/compare/v0.0.6...v0.0.7) - 2026-01-25 + +### Other + +- Add release-plz configuration to repository +- Fix clippy lint for a value that it thought looked like Pi +- Enhance the readme +- Add a ton of tests for the new parsing +- Add cli binary for inspecting compass projects and surveys +- Fix warnings resulting from miete macros +- Major refactor to separate lexing and parsing for projects, adding in propper error reporting when encountering issues in the makefiles +- Ensure that dat files write out the parameters correctly +- Fix warnings +- Add support for project parameters +- Finish filling out project format doc +- Add survey format to survey parser +- Update to nom 8 +- Add document describing project file format +- Add FileFormat struct to the Survey module +- Add test that runs additional projects from an environment variable driven directory +- Add caching to CI builds diff --git a/Cargo.lock b/Cargo.lock index 678b6dd..8a46230 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,7 +196,7 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "compass_data" -version = "0.0.6" +version = "0.0.7" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index ed6765b..925dd32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "compass_data" -version = "0.0.6" +version = "0.0.7" edition = "2024" authors = ["Zach Heylmun "] description = "A library for working with Compass cave survey data" From 1d12ff60e807ff3a9ff83debb228d56d8aea3847 Mon Sep 17 00:00:00 2001 From: Zach Heylmun Date: Sun, 25 Jan 2026 12:57:00 -0500 Subject: [PATCH 2/2] Run Ci on PRs to main --- .github/workflows/release-plz.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index b4987bd..e4ca9de 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -1,6 +1,9 @@ name: Release-plz on: + pull_request: + branches: + - main push: branches: - main