Skip to content

Commit 3a63347

Browse files
committed
release: v0.1.1
1 parent 8407498 commit 3a63347

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div align="center">
44
<img src="src-tauri/icons/icon.png" alt="JSON Prettier Logo" width="128" height="128">
55

6-
[![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)](https://github.com/rebase/json-prettier)
6+
[![Version](https://img.shields.io/badge/version-0.1.1-blue.svg)](https://github.com/rebase/json-prettier)
77
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
88
</div>
99

@@ -41,27 +41,27 @@
4141
<br>
4242
<strong>macOS</strong>
4343
<br>
44-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.0_aarch64.dmg">Apple Silicon (M1/M2)</a>
44+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.1_aarch64.dmg">Apple Silicon (M1/M2)</a>
4545
<br>
46-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.0_x64.dmg">Intel</a>
46+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.1_x64.dmg">Intel</a>
4747
</td>
4848
<td align="center" width="33%">
4949
<img src="https://upload.wikimedia.org/wikipedia/commons/5/5f/Windows_logo_-_2012.svg" alt="Windows" width="40" height="40">
5050
<br>
5151
<strong>Windows</strong>
5252
<br>
53-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.0_x64-setup.exe">Setup (.exe)</a>
53+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.1_x64-setup.exe">Setup (.exe)</a>
5454
<br>
55-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.0_x64.msi">MSI Installer</a>
55+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.1_x64.msi">MSI Installer</a>
5656
</td>
5757
<td align="center" width="33%">
5858
<img src="https://upload.wikimedia.org/wikipedia/commons/3/35/Tux.svg" alt="Linux" width="40" height="40">
5959
<br>
6060
<strong>Linux</strong>
6161
<br>
62-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/json-prettier_0.1.0_amd64.AppImage">AppImage</a>
62+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/json-prettier_0.1.1_amd64.AppImage">AppImage</a>
6363
<br>
64-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/json-prettier_0.1.0_amd64.deb">Debian (.deb)</a>
64+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/json-prettier_0.1.1_amd64.deb">Debian (.deb)</a>
6565
</td>
6666
</tr>
6767
</table>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "json-prettier",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.1.1",
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 = "json-prettier"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A simple desktop app that makes messy JSON data look clean and organized"
55
authors = ["rebase"]
66
edition = "2021"

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": "JSON Prettier",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"identifier": "com.json-prettier.app",
66
"build": {
77
"beforeDevCommand": "npm run dev",

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ function App() {
695695
<div className="about-content">
696696
<div className="app-info">
697697
<h3>JSON Prettier</h3>
698-
<p className="version">Version 0.1.0</p>
698+
<p className="version">Version 0.1.1</p>
699699
<p className="description compact">
700700
Transform messy JSON into beautifully organized format with customizable styling
701701
options.

0 commit comments

Comments
 (0)