Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
reknih committed Sep 30, 2024
1 parent 4a9b222 commit 4da0fb9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xmp-writer"
version = "0.2.0"
version = "0.3.0"
authors = ["Martin Haug <[email protected]>"]
edition = "2021"
description = "Write XMP metadata, step by step."
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Write [XMP] metadata, step by step.

```toml
[dependencies]
xmp-writer = "0.2"
xmp-writer = "0.3"
```

[XMP] is an ISO standard specifying a metadata format for files,
Expand Down Expand Up @@ -38,7 +38,7 @@ colors.add_colorant().swatch_name("Red");
colors.add_colorant().swatch_name("Green");
drop(colors);

writer.creator_tool("xmp-writer 0.2.0");
writer.creator_tool("xmp-writer 0.3.0");

println!("{}", std::str::from_utf8(&writer.finish(None)).unwrap());
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ colors.add_colorant().swatch_name("Red");
colors.add_colorant().swatch_name("Green");
drop(colors);
writer.creator_tool("xmp-writer 0.2.0");
writer.creator_tool("xmp-writer 0.3.0");
println!("{}", writer.finish(None));
```
Expand Down

0 comments on commit 4da0fb9

Please sign in to comment.