Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Release-plz

on:
pull_request:
branches:
- main
push:
branches:
- main
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compass_data"
version = "0.0.6"
version = "0.0.7"
edition = "2024"
authors = ["Zach Heylmun <zheylmun@gmail.com>"]
description = "A library for working with Compass cave survey data"
Expand Down
Loading