Skip to content

Commit

Permalink
Merge pull request #338 from algorandfoundation/dev
Browse files Browse the repository at this point in the history
v0.12.2
  • Loading branch information
drichar authored Jan 12, 2025
2 parents eb7dff7 + 6615605 commit 6c1aa78
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion contracts/bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap",
"version": "0.12.1",
"version": "0.12.2",
"description": "",
"main": "index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reti-contracts",
"version": "0.12.1",
"version": "0.12.2",
"license": "MIT",
"scripts": {
"generate-client": "algokit generate client contracts/artifacts/ --language typescript --output contracts/clients/{contract_name}Client.ts && ./update_contract_artifacts.sh",
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reti-ui",
"version": "0.12.1",
"version": "0.12.2",
"private": true,
"type": "module",
"engines": {
Expand Down
7 changes: 4 additions & 3 deletions ui/src/hooks/useCheckForUpdates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ export function useCheckForUpdates() {
const checkForUpdates = async () => {
try {
const response = await fetch(`/version.json?_=${Date.now()}`, {
cache: 'no-store',
cache: 'no-cache',
headers: {
'Cache-Control': 'no-cache, no-store, must-revalidate',
'Cache-Control': 'no-cache',
Pragma: 'no-cache',
Expires: '0',
'If-None-Match': '*',
'If-Modified-Since': '0',
},
})

Expand Down

1 comment on commit 6c1aa78

@vercel
Copy link

@vercel vercel bot commented on 6c1aa78 Jan 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

reti – ./

reti-git-dev-nodely.vercel.app
reti-nodely.vercel.app
fnet.reti.nodly.io

Please sign in to comment.