Skip to content

Commit

Permalink
Retract v0.14.0 (#446)
Browse files Browse the repository at this point in the history
Retract v0.14.0 due to listener issue #443 and the required additional API (see #445)
  • Loading branch information
mlange-42 authored Dec 23, 2024
1 parent cc832ad commit 3d86db6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

## [[unpublished]](https://github.com/mlange-42/arche/compare/v0.14.0...main)
## [[v0.14.1]](https://github.com/mlange-42/arche/compare/v0.14.0...v0.14.1)

### Features

Expand All @@ -9,6 +9,10 @@

* Fixes generic `MapX.Assign` and `MapX.NewWith` notifying listeners before setting components (#445, issue #443)

### Other

* Retract version v0.14.0 due to issue #443 and required features (#446)

## [[v0.14.0]](https://github.com/mlange-42/arche/compare/v0.13.3...v0.14.0)

### Features
Expand Down
6 changes: 3 additions & 3 deletions ecs/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
// This section gives an overview on how to achieve typical ECS manipulation operations with Arche.
//
// Simple manipulations of a single entity:
// - Create an entity: [World.NewEntity], [World.NewEntityWith]
// - Create an entity: [World.NewEntity], [World.NewEntityFn]
// - Remove an entity: [World.RemoveEntity]
// - Add components: [World.Add]
// - Add components: [World.Add], [World.AddFn]
// - Remove components: [World.Remove]
// - Exchange components: [World.Exchange]
// - Exchange components: [World.Exchange], [World.ExchangeFn]
// - Change entity relation target: [Relations.Set]
//
// Manipulations of a single entity, with a relation target:
Expand Down
4 changes: 4 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

retract (
v0.14.0 // Listener bug that requires an additional API feature.
)

0 comments on commit 3d86db6

Please sign in to comment.