Skip to content

Commit feb32ef

Browse files
committed
Bump version to 2.0.0-beta.8
1 parent 1735b7b commit feb32ef

9 files changed

Lines changed: 20 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,16 @@ jobs:
231231
path: .
232232

233233
- name: Extract and publish
234+
env:
235+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
234236
run: |
235237
tar xzf inky-nodejs.tar.gz
236238
cd node
237239
VERSION=$(node -p "require('./package.json').version")
238240
if echo "$VERSION" | grep -qE '(alpha|beta|rc|dev)'; then
239-
npm publish --access public --tag beta --provenance
241+
npm publish --access public --tag beta
240242
else
241-
npm publish --access public --provenance
243+
npm publish --access public
242244
fi
243245
244246
publish-pypi:

CHANGELOG.md

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

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

5+
## 2.0.0-beta.8
6+
7+
### Fixed
8+
9+
- I give up on OIDC auth for NPM. Moving to tokens even though they expire every 90 days.
10+
511
## 2.0.0-beta.7
612

713
### 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.7",
4+
"version": "2.0.0-beta.8",
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.7"
3+
version = "2.0.0-beta.8"
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.7"
3+
s.version = "2.0.0-beta.8"
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.7"
3+
version = "2.0.0-beta.8"
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.7", path = "../inky-core", features = ["css-inlining", "templating", "serialize"] }
16+
inky-core = { version = "2.0.0-beta.8", 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.7"
3+
version = "2.0.0-beta.8"
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.7"
3+
version = "2.0.0-beta.8"
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.7", path = "../inky-core", features = ["css-inlining", "templating"] }
13+
inky-core = { version = "2.0.0-beta.8", 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.7"
3+
version = "2.0.0-beta.8"
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.7", path = "../inky-core", features = ["css-inlining", "templating"] }
12+
inky-core = { version = "2.0.0-beta.8", path = "../inky-core", features = ["css-inlining", "templating"] }
1313
wasm-bindgen = "0.2"
1414
serde_json = "1"

0 commit comments

Comments
 (0)