Skip to content

Commit

Permalink
bumped version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHeitmann committed Jan 6, 2024
1 parent f938f8b commit 48b8de9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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": "photon-reddit",
"version": "1.3.1",
"version": "1.3.2",
"description": "A fast and modern Reddit web client",
"type": "module",
"scripts": {
Expand Down
7 changes: 6 additions & 1 deletion src/serverScripts/version.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
export const photonVersion = "1.3.1"; /// <change version script>
export const photonVersion = "1.3.2"; /// <change version script>

export const photonChangelog = {
"1.3.2": {
"New": [
"Added tracking of remaining reddit API requests",
]
},
"1.3.1": {
"Fixed": [
"Fixed display of several image and video links",
Expand Down
2 changes: 1 addition & 1 deletion src/static/scripts/utils/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const photonWebVersion = "1.3.1"; /// <change version script>
export const photonWebVersion = "1.3.2"; /// <change version script>
2 changes: 1 addition & 1 deletion src/static/serviceWorker.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* This service worker is responsible for updating & caching files, if there are more recent versions
*/
const version = "1.3.1"; /// <change version script>
const version = "1.3.2"; /// <change version script>
const CACHE_NAME = `photon-cache-${version}`;
interface CacheDescription {
hostname: "/" | string,
Expand Down

0 comments on commit 48b8de9

Please sign in to comment.