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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ 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.7.2 - 2026-05-22]

### Changed

- update deps


## [0.7.1 - 2026-05-14]

Expand Down
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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "affn"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
authors = ["VPRamon <vallespuigramon@gmail.com>"]
description = "Affine geometry primitives: strongly-typed coordinate systems, reference frames, and centers for scientific computing."
Expand All @@ -21,12 +21,12 @@ serde = ["dep:serde", "qtty/serde"]
astro = ["qtty/astro"]

[dependencies]
affn-derive = { version = "0.7.1", path = "affn-derive" }
affn-derive = { version = "0.7", path = "affn-derive" }
qtty = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }

[dev-dependencies]
criterion = "0.8.1"
criterion = "0.8"
serde_json = "1.0"

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add the dependency:

```toml
[dependencies]
affn = "0.7.1"
affn = "0.7.2"
qtty = "0.8.1"
```

Expand Down
6 changes: 3 additions & 3 deletions affn-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "affn-derive"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
authors = ["VPRamon <vallespuigramon@gmail.com>"]
description = "Derive macros for affn: ReferenceFrame and ReferenceCenter"
Expand All @@ -13,6 +13,6 @@ categories = ["science", "mathematics"]
proc-macro = true

[dependencies]
syn = { version = "2.0.117", features = ["full", "extra-traits"] }
quote = "1.0.45"
syn = { version = "2.0", features = ["full", "extra-traits"] }
quote = "1.0"
proc-macro2 = "1.0"
Loading