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
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ env:
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: true
matrix:
toolchain:
- stable
include:
- os: ubuntu-latest
- os: windows-latest
# Universal macOS binary is supported as universal-apple-darwin.
- os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
os: macos-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
# Universal macOS binary is supported as universal-apple-darwin.
- target: universal-apple-darwin
os: macos-latest
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org).

## [1.0.0] - 2024-12-19

- Added missing Windows release target
- Extended TDF time period support
- Added support for `u24` and `u48` integer types
- Populated `README.md`
- Updated all dependencies
- Handling of read underflow on TDFs
- Format hex values with requested number of digits
- Basic Variable-Length-Array TDF support

## [0.2.1] - 2024-12-01

- Fixed Github release generation action
Expand Down
Loading
Loading