Skip to content

Commit 17093c6

Browse files
committed
chore(release): prepare for 0.2.1 and crates.io publish
1 parent 11577b3 commit 17093c6

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

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

5+
## [0.2.1] - 2025-02-22
6+
7+
### 🚀 Features
8+
9+
- Show build info in version info
10+
11+
### 🐛 Bug Fixes
12+
13+
- *(help)* Wrong info about --pattern in help
14+
15+
### 🚜 Refactor
16+
17+
- Avoid using Command as struct, can be many things
18+
19+
### ⚙️ Miscellaneous Tasks
20+
21+
- Cross-platform CI builds
22+
- *(release)* Release pipeline
23+
524
## [0.2.0] - 2025-02-18
625

726
### 🚀 Features
@@ -23,4 +42,3 @@ All notable changes to this project will be documented in this file.
2342
- Added license
2443
- Rust assets
2544

26-
<!-- generated by git-cliff -->

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[package]
22
name = "exif_renamer"
33
authors = ["Francesco Pira (pirafrank)"]
4-
version = "0.2.0"
4+
version = "0.2.1"
55
edition = "2021"
66
repository = "https://github.com/pirafrank/rust_exif_renamer"
7+
documentation = "https://github.com/pirafrank/rust_exif_renamer/blob/main/README.md"
78
description = "Rename photos in given directory to their EXIF DateTimeOriginal, and viceversa. Defaults to YYYYMMDD_hh24mmss format."
89
license = "MIT"
910
readme = "README.md"
11+
rust-version = "1.78.0"
1012
build = "build.rs"
1113
keywords = ["exif", "rename", "cli", "photos"]
12-
categories = ["cli"]
1314
exclude = ["test_assets/*", "/.vscode/*", "/.github/*"]
1415

1516
[dependencies]

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Rust EXIF Renamer
22

3+
[![GitHub Release](https://img.shields.io/github/v/release/pirafrank/rust_exif_renamer)](https://github.com/pirafrank/rust_exif_renamer/releases/latest)
4+
[![Crates.io](https://img.shields.io/crates/v/rust_exif_renamer)](https://crates.io/crates/rust_exif_renamer)
5+
[![Crates.io MSRV](https://img.shields.io/crates/msrv/rust_exif_renamer)](https://github.com/pirafrank/rust_exif_renamer/blob/main/Cargo.toml)
6+
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7+
8+
[![CI-CD](https://github.com/pirafrank/rust_exif_renamer/actions/workflows/ci.yml/badge.svg)](https://github.com/pirafrank/rust_exif_renamer/actions/workflows/ci.yml)
9+
[![Release](https://github.com/pirafrank/rust_exif_renamer/actions/workflows/release.yml/badge.svg)](https://github.com/pirafrank/rust_exif_renamer/actions/workflows/release.yml)
10+
311
A simple cross-platform photo renamer and data editor. It renames JPEG files based on the `DateTimeOriginal` in their EXIF metadata, and viceversa.
412

513
It processes in parallel all files in the given folder. If anything fails, it prints an error message and continues with the next file.

cliff.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ body = """
2929
{% endfor %}\n
3030
"""
3131
# template for the changelog footer
32-
footer = """
33-
<!-- generated by git-cliff -->
34-
"""
32+
#footer = """
33+
#<!-- generated by git-cliff -->
34+
#"""
3535
# remove the leading and trailing s
3636
trim = true
3737
# postprocessors

0 commit comments

Comments
 (0)