Skip to content

Commit

Permalink
chore: release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
databasedav committed Oct 12, 2024
1 parent 30ba62f commit cc1abe9
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tag]
gpgSign = true
5 changes: 4 additions & 1 deletion .github/workflows/release-plz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,13 @@ jobs:
submodules: true
- name: install rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: install alsa
shell: bash
run: sudo apt-get update && sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
- name: run release-plz
uses: MarcoIeni/[email protected]
with:
command: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ 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.1.0/), and this project vaguely adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
## unreleased

# 0.2.0 (2024-10-12)

### added

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[package]
name = "haalka"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
categories = ["asynchronous", "gui", "game-development"]
description = "ergonomic reactive Bevy UI library powered by FRP signals"
Expand Down Expand Up @@ -34,7 +34,7 @@ bevy-async-ecs = "0.6.0"
cfg-if = "1.0"
enclose = "1.1"
futures-signals = "0.3"
haalka_futures_signals_ext = { path = "MoonZoon/crates/futures_signals_ext", version = "0.0.1" }
haalka_futures_signals_ext = { path = "MoonZoon/crates/futures_signals_ext", version = "0.0.2" }
once_cell = "1.19"
paste = { version = "1.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion MoonZoon
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ One can also run the examples with [`just`](https://github.com/casey/just) (`car

|bevy|haalka|
|-|-|
|`0.14`|`bevy_0.14` branch|
|`0.14`|`0.2`|
|`0.13`|`0.1`|

## license
Expand Down
17 changes: 17 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[workspace]
changelog_update = false
git_release_type = "auto"
git_release_draft = true
# release_always = false

[[package]]
name = "haalka"
git_tag_name = "v{{ version }}"

[[package]]
name = "haalka_futures_signals_ext"
git_tag_enable = false

[[package]]
name = "haalka_futures_signals_ext"
git_tag_enable = false
2 changes: 1 addition & 1 deletion src/text_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use std::{ops::{Deref, Not}, pin::Pin};

use bevy::{
ecs::system::{SystemId, SystemState},
ecs::system::SystemState,
prelude::*,
};
use bevy_mod_picking::{
Expand Down

0 comments on commit cc1abe9

Please sign in to comment.