Skip to content

Commit 00bce0e

Browse files
authored
Fix version (#407)
We already published v0.4.3; fix changelog and bump to v0.4.4
1 parent 87eeb1a commit 00bce0e

14 files changed

Lines changed: 45 additions & 43 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# 0.4.3 (unpublished)
2-
- Fixed bug in x86 interval `OR` function ([#395](https://github.com/mkeeter/fidget/pull/395)),
3-
thanks [@Wulfsta](https://github.com/Wulfsta)
4-
- Bumped many dependencies
1+
# 0.4.4 (unpublished)
52
- Add `Image::build` function to build an image from a `Vec<T>` and
63
`ImageSizeLike`, returning an error if the data size is incorrect.
74
- Revamping `fidget-bytecode`
@@ -20,6 +17,11 @@
2017
- Fix a bug in bulk evaluator argument checks where mismatched slices could be
2118
allowed under some circumstances
2219

20+
# 0.4.3
21+
- Fixed bug in x86 interval `OR` function ([#395](https://github.com/mkeeter/fidget/pull/395)),
22+
thanks [@Wulfsta](https://github.com/Wulfsta)
23+
- Bumped many dependencies
24+
2325
# 0.4.2
2426
- Change `depth` member in `GeometryPixel` from `u32` to `f32` ([#381](https://github.com/mkeeter/fidget/pull/381))
2527
- Fixed memory corruption in a subset of x86 interval JIT functions, revealed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ zerocopy = { version = "0.8", features = ["derive"] }
8282

8383
# Local crates
8484
fidget.path = "fidget"
85-
fidget-core = { path = "fidget-core", version = "=0.4.3" }
86-
fidget-bytecode = { path = "fidget-bytecode", version = "=0.4.3" }
87-
fidget-gui = { path = "fidget-gui", version = "=0.4.3" }
88-
fidget-jit = { path = "fidget-jit", version = "=0.4.3" }
89-
fidget-mesh = { path = "fidget-mesh", version = "=0.4.3" }
90-
fidget-raster = { path = "fidget-raster", version = "=0.4.3" }
91-
fidget-rhai = { path = "fidget-rhai", version = "=0.4.3" }
92-
fidget-shapes = { path = "fidget-shapes", version = "=0.4.3" }
93-
fidget-solver = { path = "fidget-solver", version = "=0.4.3" }
85+
fidget-core = { path = "fidget-core", version = "=0.4.4" }
86+
fidget-bytecode = { path = "fidget-bytecode", version = "=0.4.4" }
87+
fidget-gui = { path = "fidget-gui", version = "=0.4.4" }
88+
fidget-jit = { path = "fidget-jit", version = "=0.4.4" }
89+
fidget-mesh = { path = "fidget-mesh", version = "=0.4.4" }
90+
fidget-raster = { path = "fidget-raster", version = "=0.4.4" }
91+
fidget-rhai = { path = "fidget-rhai", version = "=0.4.4" }
92+
fidget-shapes = { path = "fidget-shapes", version = "=0.4.4" }
93+
fidget-solver = { path = "fidget-solver", version = "=0.4.4" }
9494
workspace-hack = { path = "workspace-hack", version = "0.1" }

demos/web-editor/crate/Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fidget-bytecode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fidget-bytecode"
33
description = "Bytecode representation for Fidget expression tapes"
44
readme = "README.md"
5-
version = "0.4.3"
5+
version = "0.4.4"
66

77
edition.workspace = true
88
license.workspace = true

fidget-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fidget-core"
33
description = "Core infrastructure for Fidget"
44
readme = "README.md"
5-
version = "0.4.3"
5+
version = "0.4.4"
66

77
edition.workspace = true
88
license.workspace = true

fidget-gui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fidget-gui"
33
description = "Platform-independent GUI abstractions for Fidget"
44
readme = "README.md"
5-
version = "0.4.3"
5+
version = "0.4.4"
66

77
edition.workspace = true
88
license.workspace = true

fidget-jit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fidget-jit"
33
description = "Native JIT compiler for Fidget"
44
readme = "README.md"
5-
version = "0.4.3"
5+
version = "0.4.4"
66

77
edition.workspace = true
88
license.workspace = true

fidget-mesh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fidget-mesh"
33
description = "Meshing of complex closed-form implicit surfaces"
44
readme = "README.md"
5-
version = "0.4.3"
5+
version = "0.4.4"
66

77
edition.workspace = true
88
license.workspace = true

fidget-raster/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fidget-raster"
33
description = "Bitmap and heightmap rendering for Fidget"
44
readme = "README.md"
5-
version = "0.4.3"
5+
version = "0.4.4"
66

77
edition.workspace = true
88
license.workspace = true

0 commit comments

Comments
 (0)