Skip to content

Releases: aztecs-hs/aztecs

v0.17.1

Choose a tag to compare

@matthunz matthunz released this 26 Jan 14:42

Full Changelog: v0.17.0...v0.17.1

v0.17.0

Choose a tag to compare

@matthunz matthunz released this 26 Jan 09:13

Full Changelog: v0.16.0...v0.17.0

v0.16.1

Choose a tag to compare

@matthunz matthunz released this 26 Jan 03:37

Full Changelog: v0.15.0...v0.16.1

v0.16.0

Choose a tag to compare

@matthunz matthunz released this 26 Jan 03:28

Full Changelog: v0.15.0...v0.16.0

v0.15.0

Choose a tag to compare

@matthunz matthunz released this 17 Jan 20:05
chore: publish v0.15.0

aztecs-v0.14.0

Choose a tag to compare

@matthunz matthunz released this 10 Aug 16:05

What's Changed

Full Changelog: aztecs-v0.13.0...aztecs-v0.14.0

aztecs-v0.13.0

Choose a tag to compare

@matthunz matthunz released this 02 Aug 10:36

What's Changed

  • feat!: rewrite with lower-level sparse sets by @matthunz in #43

Full Changelog: aztecs-v0.12.0...aztecs-v0.13.0

aztecs-v0.12.0

Choose a tag to compare

@matthunz matthunz released this 14 Mar 19:20

0.12.0 - 2025-3-14

Breaking changes

aztecs-v0.11.1

Choose a tag to compare

@matthunz matthunz released this 07 Mar 18:44

0.11.1 - 2025-3-7

Documentation

  • Fix Hackage compilation

aztecs-v0.11.0

Choose a tag to compare

@matthunz matthunz released this 07 Mar 18:38

0.11.0 - 2025-3-7

Breaking changes

  • Replace classes with interpreter pattern (77ed001) (a3c6db6) (9d9c4ca)

    • Combine query filters into queries (f1c9c55)
    • Query accum methods (ac3c0d8)
    • Concurrent systems (edaeffd)
  • Remove engine-specific components

    • My plan is to move these to other packages down the road, focusing this package on a modular ECS
move :: (Monad m) => QueryT m Position
move = fetch & zipFetchMap (\(Velocity v) (Position p) -> Position $ p + v)