Skip to content

Commit 7ca0ba5

Browse files
committed
fix(core): correct crate metadata and cut v0.1.1
Session-Id: 033876f1-e95b-4b2c-b333-aa69786c03a6
1 parent 857dff6 commit 7ca0ba5

File tree

5 files changed

+11
-30
lines changed

5 files changed

+11
-30
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "maple"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.80"
66

@@ -14,7 +14,7 @@ eyre = "0.6"
1414
color-eyre = "0.6"
1515
serde = { version = "1", features = ["derive"] }
1616
serde_json = "1"
17-
maple-render-core = { path = "crates/maple-render-core", version = "0.1.0" }
17+
maple-render-core = { path = "crates/maple-render-core", version = "0.1.1" }
1818

1919
[target.'cfg(target_arch = "wasm32")'.dependencies]
2020
wasm-bindgen = "0.2"

crates/maple-render-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "maple-render-core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.80"
6-
description = "Core rendering and animation logic for Maple templates"
6+
description = "Core rendering and animation logic for maple templates"
77
license = "MIT"
8-
repository = "https://github.com/davebcn87/maple"
8+
repository = "https://github.com/taskylizard/maple"
99
readme = "README.md"
1010
keywords = ["gif", "image", "rendering", "template", "animation"]
1111
categories = ["multimedia::images", "multimedia::video"]

crates/maple-render-core/README.md

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# maple-render-core
22

3-
Core rendering engine extracted from Maple.
3+
Core rendering engine extracted from maple.
44

55
This crate contains:
66

@@ -13,33 +13,14 @@ This crate contains:
1313
It intentionally does **not** bundle templates or font assets.
1414
For text rendering, callers must pass font bytes into `Input::from_text`.
1515

16-
## Publish checklist
17-
18-
From the repository root:
19-
20-
```bash
21-
# 1) Validate locally
22-
cargo check --manifest-path crates/maple-render-core/Cargo.toml
23-
cargo test --manifest-path crates/maple-render-core/Cargo.toml
24-
25-
# 2) Inspect package contents
26-
cargo package --manifest-path crates/maple-render-core/Cargo.toml --list
27-
28-
# 3) Full registry validation without upload
29-
cargo publish --manifest-path crates/maple-render-core/Cargo.toml --dry-run
30-
31-
# 4) Publish for real
32-
cargo publish --manifest-path crates/maple-render-core/Cargo.toml
33-
```
34-
3516
## Minimal usage
3617

3718
```rust
3819
use maple_render_core::{GifAnim, Input, Inputs, Renders, Repository, TextOptions};
3920
use maple_render_core::render::RenderQuality;
4021

4122
fn main() -> Result<(), Box<dyn std::error::Error>> {
42-
// Load a template zip generated using Maple's template format.
23+
// Load a template zip generated using maple's template format.
4324
let repo = Repository::load("templates/toaster.zip")?;
4425

4526
// Add image input.

docs/publishing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ This repository publishes the `maple-render-core` crate through GitHub Actions.
1616
3. Create and push a tag in this format:
1717

1818
```bash
19-
git tag core-v0.1.0
20-
git push origin core-v0.1.0
19+
git tag core-v<version>
20+
git push origin core-v<version>
2121
```
2222

2323
4. CI runs checks, then publishes `maple-render-core` to crates.io.

0 commit comments

Comments
 (0)