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(version): 0.1.0 #13

Merged
merged 3 commits into from
Jul 12, 2024
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
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Changelog
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

- - -
## 0.1.0 - 2024-07-12
#### Bug Fixes
- node dragging (#9) - (b3128f0) - Theo Paris
- compile errors with egui 0.22 - (aa39c7b) - Theo Paris
#### Continuous Integration
- add github actions workflow (#8) - (0a8aa1a) - Theo Paris
#### Documentation
- update example link - (da65c7b) - Theo Paris
- update license copyright - (a33615f) - Theo Paris
#### Features
- add renovate.json - (8719348) - Theo Paris
#### Miscellaneous Chores
- **(config)** migrate renovate config (#5) - (c2f943e) - renovate[bot]
- **(deps)** update all non-major dependencies to 0.28.0 - (f1802ff) - renovate[bot]
- **(deps)** pin actions/checkout action to a5ac7e5 (#10) - (4c6593a) - renovate[bot]
- **(deps)** update all non-major dependencies to 0.27.0 (#4) - (2d65245) - renovate[bot]
- **(deps)** update all non-major dependencies to 0.22.0 - (e3e245a) - renovate[bot]
- **(deps)** update all non-major dependencies - (3bfb97d) - Renovate Bot
- prepare for release - (b4de67f) - Theo Paris
- fix build errors with egui 0.28 - (df649a7) - Theo Paris
- add cocogitto - (5aa55b7) - Theo Paris

- - -

Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).
12 changes: 8 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[package]
name = "egui_nodes"
version = "0.1.6"
authors = ["Cameron Haigh <[email protected]>"]
edition = "2018"
name = "tinted_egui_nodes"
version = "0.1.0"
authors = ["Theo Paris <[email protected]>", "Cameron Haigh <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A Egui port of https://github.com/Nelarius/imnodes"

[lib]
name = "egui_nodes"
path = "src/lib.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
6 changes: 5 additions & 1 deletion cog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ generate_mono_repository_global_tag = true
branch_whitelist = []
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
pre_bump_hooks = [
"cargo build --release",
"echo 'bumping from {{latest}} to {{version}}'",
"cargo bump {{version}}",
]
post_bump_hooks = []
pre_package_bump_hooks = []
post_package_bump_hooks = []
Expand Down