Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #57

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exclude = [
]

[workspace.package]
version = "0.1.0"
version = "0.1.1"
authors = ["Lee-Orr"]
description = "A modular hot reload system for rust"
license = "MIT OR Apache-2.0"
Expand Down
21 changes: 21 additions & 0 deletions bevy_dexterous_developer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog
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.1.1](https://github.com/lee-orr/dexterous_developer/compare/bevy_dexterous_developer-v0.1.0...bevy_dexterous_developer-v0.1.1) - 2024-02-18

### Fixed
- fix

### Other
- update bevy 0.13
- move build process & shared types to separate crates
- Extract bevy crate ([#55](https://github.com/lee-orr/dexterous_developer/pull/55))
- more renames and cleanup
- add readme info
- small fixes
- adjust names
2 changes: 1 addition & 1 deletion bevy_dexterous_developer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ chrono = { version = "0.4", optional = true }
libloading = { version = "0.8", optional = true }
uuid = { version = "1", features = ["v4"], optional = true }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"]}
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"]}
79 changes: 79 additions & 0 deletions dexterous_developer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Changelog
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.1.1](https://github.com/lee-orr/dexterous_developer/compare/dexterous_developer-v0.1.0...dexterous_developer-v0.1.1) - 2024-02-18

### Fixed
- fix publishing/version
- fixed allocation issue
- fix transfer of path between proesses
- fix unneeded borrow
- fix links

### Other
- Extract bevy crate ([#55](https://github.com/lee-orr/dexterous_developer/pull/55))
- Correct architecture detection on MacOS ([#39](https://github.com/lee-orr/dexterous_developer/pull/39))
- add publish=true
- bump version to 0.0.12
- Revert "update to 0.12 - start work"
- update to 0.12 - start work
- update cargo for 0.0.12-pre.0
- version bump
- update to 0.0.10
- bump version
- initial network works
- clippy + fmt
- only use dynamic lib when hot_internal is enabled
- got tests for reloadables working
- update versions
- ensure hashed files aren't replaced
- update tests
- got compilation on windows working reliably again
- cstring again
- clippy + string lossy
- use &CStr for transfer of info
- better logging
- clippy + fmt
- remove rpath
- windows fixes
- format
- get dynamic linker to work on linux (hopefully)
- prevent infinite loop waiting for non-existing files
- clippy, fmt, check for clang and lld, ensure pointers get followed.
- clippy + fmt
- remove cargo
- file endings
- got hot reload tests working
- bump versions
- remove loader macro
- update versions
- move bevy support into module, clean up cfg flags
- additional improvements to env
- encourage nightly
- call from library holder
- better set up
- use cargo directly
- clippy , fmt, cleanup
- simplify dependencies
- cluppy + fmt
- remove need for env variables when running direct
- add impl for App
- user merged environments
- update
- Readme & bump versions
- update cli
- remove the dexterous developer winit fork
- make it easier to call function
- update cargo versions
- add cli
- initial cli
- clippy + fmt
- update to InitialPlugins trait
- simplify
- Add safety comments and improve the error experience of setup_reloadable_app
- more renames and cleanup
13 changes: 13 additions & 0 deletions dexterous_developer_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog
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.1.1](https://github.com/lee-orr/dexterous_developer/compare/dexterous_developer_builder-v0.1.0...dexterous_developer_builder-v0.1.1) - 2024-02-18

### Other
- avoid direct implementation of ToString
- move build process & shared types to separate crates
2 changes: 1 addition & 1 deletion dexterous_developer_builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ debounce = { version = "0.2" }
tracing = { version = "0.1" }
dexterous_developer_types = { version = "0.1.0", path = "../dexterous_developer_types" }
cargo_metadata = { version = "0.18" }
which = { version = "6" }
which = { version = "6" }
88 changes: 88 additions & 0 deletions dexterous_developer_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Changelog
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.1.1](https://github.com/lee-orr/dexterous_developer/compare/dexterous_developer_cli-v0.1.0...dexterous_developer_cli-v0.1.1) - 2024-02-18

### Added
- cross-platform compilation support ([#12](https://github.com/lee-orr/dexterous_developer/pull/12))

### Fixed
- fix publishing/version
- fix cargo toml duplicate description
- fix remote run asset missing
- fix bug with assets
- fix windows paths

### Other
- move build process & shared types to separate crates
- clippy + fmt + readme
- update axum
- Extract bevy crate ([#55](https://github.com/lee-orr/dexterous_developer/pull/55))
- build images for android
- Correct architecture detection on MacOS ([#39](https://github.com/lee-orr/dexterous_developer/pull/39))
- add publish=true
- bump version to 0.0.12
- Revert "update to 0.12 - start work"
- update to 0.12 - start work
- Improve Asset Reload Tests
- 27 running examples via cli ([#32](https://github.com/lee-orr/dexterous_developer/pull/32))
- Bevy main ([#31](https://github.com/lee-orr/dexterous_developer/pull/31))
- update cargo for 0.0.12-pre.0
- version bump
- Dexterous developer gui ([#18](https://github.com/lee-orr/dexterous_developer/pull/18))
- Dynamically add dylib ([#19](https://github.com/lee-orr/dexterous_developer/pull/19))
- Revert "remove need to use dylib ([#17](https://github.com/lee-orr/dexterous_developer/pull/17))"
- Revert "generate lib for compile-libs"
- generate lib for compile-libs
- remove need to use dylib ([#17](https://github.com/lee-orr/dexterous_developer/pull/17))
- update to 0.0.10
- add multiple watch directories
- f
- bump version
- start getting ready for mac... if it ever happens
- adjust
- clippy
- better target abstraction
- add compile existing
- adjust
- clippy
- add support for running existing files
- adjustments - remove zig
- add cross compilation with zig
- add keep alive, command structure
- prevent download of non-platform libs
- remove zig and xwin
- remove mold support
- adjust OS const
- update dev container
- print os striing
- sync assets
- add hashing for files
- got tests for remote
- serving
- clippy
- initial network works
- get initial serving
- Merge branch 'main' of https://github.com/lee-orr/dexterous-developer into add_remote_support
- start adding server options
- got tests for reloadables working
- update versions
- better logging
- get dynamic linker to work on linux (hopefully)
- remove cargo
- file endings
- bump versions
- update versions
- get correct things set up
- remove need for env variables when running direct
- update
- Readme & bump versions
- make it easier to call function
- update cargo versions
- add cli
- initial cli
2 changes: 1 addition & 1 deletion dexterous_developer_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ bytes = { version = "1", features = ["std"] }

tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter", "fmt"]}
dexterous_developer_types = { version = "0.1.0", path = "../dexterous_developer_types" }
dexterous_developer_types = { version = "0.1.0", path = "../dexterous_developer_types" }
25 changes: 25 additions & 0 deletions dexterous_developer_dynamic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog
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.1.1](https://github.com/lee-orr/dexterous_developer/compare/dexterous_developer_dynamic-v0.1.0...dexterous_developer_dynamic-v0.1.1) - 2024-02-18

### Fixed
- fix publishing/version

### Other
- Extract bevy crate ([#55](https://github.com/lee-orr/dexterous_developer/pull/55))
- Correct architecture detection on MacOS ([#39](https://github.com/lee-orr/dexterous_developer/pull/39))
- add publish=true
- bump version to 0.0.12
- Revert "update to 0.12 - start work"
- update to 0.12 - start work
- update cargo for 0.0.12-pre.0
- version bump
- update to 0.0.10
- bump version
- only use dynamic lib when hot_internal is enabled
2 changes: 1 addition & 1 deletion dexterous_developer_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ serde = "*"
orange = []

[package.metadata]
hot_reload_features = ["bevy/dynamic_linking", "bevy/embedded_watcher"]
hot_reload_features = ["bevy/dynamic_linking", "bevy/embedded_watcher"]
73 changes: 73 additions & 0 deletions dexterous_developer_internal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Changelog
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.1.1](https://github.com/lee-orr/dexterous_developer/compare/dexterous_developer_internal-v0.1.0...dexterous_developer_internal-v0.1.1) - 2024-02-18

### Added
- cross-platform compilation support ([#12](https://github.com/lee-orr/dexterous_developer/pull/12))
- add support for mold using an env variable ([#13](https://github.com/lee-orr/dexterous_developer/pull/13))
- added mold support on linux via prefer_mold option

### Fixed
- fix publishing/version
- fix bug with assets
- fix windows
- fix

### Other
- move build process & shared types to separate crates
- clippy
- remove need for nightly
- update which crate
- Extract bevy crate ([#55](https://github.com/lee-orr/dexterous_developer/pull/55))
- build images for android
- Correct architecture detection on MacOS ([#39](https://github.com/lee-orr/dexterous_developer/pull/39))
- add publish=true
- bump version to 0.0.12
- working 0.12
- setup for idea ide
- Revert "update to 0.12 - start work"
- update to 0.12 - start work
- Improve Asset Reload Tests
- 27 running examples via cli ([#32](https://github.com/lee-orr/dexterous_developer/pull/32))
- Bevy main ([#31](https://github.com/lee-orr/dexterous_developer/pull/31))
- 22 events ([#26](https://github.com/lee-orr/dexterous_developer/pull/26))
- Merge branches 'main' and 'main' of https://github.com/lee-orr/dexterous-developer
- update cargo for 0.0.12-pre.0
- version bump
- Reload individual elements ([#21](https://github.com/lee-orr/dexterous_developer/pull/21))
- add last update label to top of window
- Dynamically add dylib ([#19](https://github.com/lee-orr/dexterous_developer/pull/19))
- Revert "remove need to use dylib ([#17](https://github.com/lee-orr/dexterous_developer/pull/17))"
- remove need to use dylib ([#17](https://github.com/lee-orr/dexterous_developer/pull/17))
- render compilation errors
- update to 0.0.10
- add multiple watch directories
- documentation
- bump version
- start getting ready for mac... if it ever happens
- clippy
- better target abstraction
- ensure build output
- clippy
- add compile existing
- add support for running existing files
- adjustments - remove zig
- add cross compilation with zig
- add keep alive, command structure
- remove zig and xwin
- move to build providers
- remove mold support
- sync assets
- add hashing for files
- got tests for remote
- initial network works
- get initial serving
- refactor to separate out statics and actual functions
- adjust logging
- got tests for reloadables working
2 changes: 1 addition & 1 deletion dexterous_developer_internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ chrono = { version = "0.4", optional = true }
dunce = "1"
serde = { version = "1"}
dexterous_developer_types = { version = "0.1.0", path = "../dexterous_developer_types" }
dexterous_developer_builder = { version = "0.1.0", path = "../dexterous_developer_builder", optional = true }
dexterous_developer_builder = { version = "0.1.0", path = "../dexterous_developer_builder", optional = true }
Loading
Loading