Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
reknih committed Oct 17, 2023
1 parent d38cce2 commit d8bb46d
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.1.0"
version = "0.2.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.1"
xmp-writer = "0.2"
```

XMP is a metadata format developed by Adobe. It is either embedded into
Expand Down Expand Up @@ -37,7 +37,7 @@ colors.add_colorant().swatch_name("Red");
colors.add_colorant().swatch_name("Green");
drop(colors);

writer.creator_tool("xmp-writer 0.1.0");
writer.creator_tool("xmp-writer 0.2.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.1.0");
writer.creator_tool("xmp-writer 0.2.0");
println!("{}", writer.finish(None));
```
Expand Down

0 comments on commit d8bb46d

Please sign in to comment.