Skip to content

Commit 9198ec7

Browse files
committed
0.3.0 リリース用意
1 parent 8cd088b commit 9198ec7

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
[Unreleased]: https://github.com/pluslatte/vrc-avatar-switcher/compare/v0.3.0...HEAD
11+
12+
## [0.3.0]
913
### Added
1014
- 文字列で表示するアバターを絞り込む機能を追加
1115
- アバターのタグを一括編集できるように変更
1216

1317
### Fixed
1418
- 認証情報が期限切れした場合、ログイン画面に戻らなかったのを修正
1519

16-
[Unreleased]: https://github.com/pluslatte/vrc-avatar-switcher/compare/v0.2.0...HEAD
20+
[0.3.0]: https://github.com/pluslatte/vrc-avatar-switcher/releases/tag/v0.3.0
1721

1822
## [0.2.0]
1923
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vrc-avatar-switcher",
33
"private": true,
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/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.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vrc-avatar-switcher"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "A Tauri App"
55
authors = ["pluslatte"]
66
edition = "2021"

src-tauri/src/api_config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::sync::Arc;
33
use reqwest::cookie::Jar;
44
use vrchatapi::apis::configuration::Configuration;
55

6-
const USER_AGENT: &str = "vrc-avatar-switcher/0.2.0";
6+
const USER_AGENT: &str = "vrc-avatar-switcher/0.3.0";
77

88
pub fn create_configuration_for_login(
99
jar: &Arc<Jar>,

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "vrc-avatar-switcher",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"identifier": "com.pluslatte.vrc-avatar-switcher",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)