Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglun committed Dec 5, 2024
2 parents c655c3c + 6de39e5 commit 7b40aa4
Show file tree
Hide file tree
Showing 25 changed files with 496 additions and 280 deletions.
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lettura",
"version": "0.1.20",
"version": "0.1.21",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
10 changes: 10 additions & 0 deletions scripts/update-version.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import fs from "node:fs";
import path from "node:path";

const v = process.argv[2];
console.log("🚀 ~ file: update-version.mjs:3 ~ v:", v);
const pkg = fs.readFileSync(import.meta.dirname + "/../package.json", "utf-8");
const json = JSON.parse(pkg);
const version = json.version;
console.log("🚀 ~ file: update-version.mjs:6 ~ json:", json);
console.log("🚀 ~ file: update-version.mjs:7 ~ version:", version);
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lettura"
version = "0.1.20"
version = "0.1.21"
description = "Your RSS reader"
authors = ["zhanglun1410@gmail.com"]
license = ""
Expand Down
Loading

0 comments on commit 7b40aa4

Please sign in to comment.