Skip to content

Commit 1735b7b

Browse files
committed
Bump version to 2.0.0-beta.7
1 parent 52d6c58 commit 1735b7b

9 files changed

Lines changed: 18 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ jobs:
219219
contents: read
220220
id-token: write
221221
steps:
222+
- uses: actions/checkout@v5
222223
- uses: actions/setup-node@v5
223224
with:
224225
registry-url: https://registry.npmjs.org

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to the Inky project will be documented in this file.
44

5+
## 2.0.0-beta.7
6+
7+
### Fixed
8+
9+
- Another attempt at fixing the NPM publish via Github Actions. I really love the NPM ecosystem so much. It's just so user friendly!
10+
11+
512
## 2.0.0-beta.6
613

714
### Fixed

bindings/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "inky",
33
"description": "WASM bindings for Inky",
4-
"version": "2.0.0-beta.6",
4+
"version": "2.0.0-beta.7",
55
"license": "MIT",
66
"files": [
77
"inky_bg.wasm",

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "inky-email"
3-
version = "2.0.0-beta.6"
3+
version = "2.0.0-beta.7"
44
description = "Transform email templates into email-safe HTML — powered by Rust"
55
license = {text = "MIT"}
66
requires-python = ">=3.8"

bindings/ruby/inky-email.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "inky-email"
3-
s.version = "2.0.0-beta.6"
3+
s.version = "2.0.0-beta.7"
44
s.summary = "Transform email templates into email-safe HTML"
55
s.description = "Inky converts simple HTML with custom components into email-safe table markup. Powered by Rust via Fiddle."
66
s.authors = ["ZURB"]

crates/inky-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inky-cli"
3-
version = "2.0.0-beta.6"
3+
version = "2.0.0-beta.7"
44
edition = "2021"
55
description = "Inky CLI — transform, migrate, and validate email templates"
66
license = "MIT"
@@ -13,7 +13,7 @@ name = "inky"
1313
path = "src/main.rs"
1414

1515
[dependencies]
16-
inky-core = { version = "2.0.0-beta.6", path = "../inky-core", features = ["css-inlining", "templating", "serialize"] }
16+
inky-core = { version = "2.0.0-beta.7", path = "../inky-core", features = ["css-inlining", "templating", "serialize"] }
1717
clap = { version = "4", features = ["derive"] }
1818
glob = "0.3"
1919
colored = "2"

crates/inky-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inky-core"
3-
version = "2.0.0-beta.6"
3+
version = "2.0.0-beta.7"
44
edition = "2021"
55
description = "Inky — convert simple HTML into email-safe table markup"
66
license = "MIT"

crates/inky-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inky-ffi"
3-
version = "2.0.0-beta.6"
3+
version = "2.0.0-beta.7"
44
edition = "2021"
55
description = "C FFI bindings for Inky"
66
license = "MIT"
@@ -10,7 +10,7 @@ crate-type = ["cdylib", "staticlib"]
1010
name = "inky"
1111

1212
[dependencies]
13-
inky-core = { version = "2.0.0-beta.6", path = "../inky-core", features = ["css-inlining", "templating"] }
13+
inky-core = { version = "2.0.0-beta.7", path = "../inky-core", features = ["css-inlining", "templating"] }
1414
serde_json = "1"
1515

1616
[build-dependencies]

crates/inky-wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inky"
3-
version = "2.0.0-beta.6"
3+
version = "2.0.0-beta.7"
44
edition = "2021"
55
description = "WASM bindings for Inky"
66
license = "MIT"
@@ -9,6 +9,6 @@ license = "MIT"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
inky-core = { version = "2.0.0-beta.6", path = "../inky-core", features = ["css-inlining", "templating"] }
12+
inky-core = { version = "2.0.0-beta.7", path = "../inky-core", features = ["css-inlining", "templating"] }
1313
wasm-bindgen = "0.2"
1414
serde_json = "1"

0 commit comments

Comments
 (0)