Skip to content

Commit 81513c5

Browse files
Merge pull request #3208 from quadratichq/ayush/apiURl
fix: update api url to api-aws
2 parents 8f4eaf3 + 5ae0b92 commit 81513c5

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

.github/workflows/production-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ jobs:
286286
service:
287287
- name: client
288288
url: "https://app.quadratichq.com/version.json"
289-
- name: api-heroku
290-
url: "https://api.quadratichq.com/health"
289+
# - name: api-heroku
290+
# url: "https://api.quadratichq.com/health"
291291
- name: api-aws
292292
url: "https://api-aws.quadratichq.com/health"
293293
- name: multiplayer

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ edition = "2024"
1414
description = "Infinite data grid with Python, JavaScript, and SQL built-in"
1515
repository = "https://github.com/quadratichq/quadratic"
1616
license-file = "LICENSE"
17-
version = "0.13.3"
17+
version = "0.13.4"
1818

1919
[profile.release]
2020
# Tell `rustc` to optimize for small code size.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.3
1+
0.13.4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quadratic",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"author": {
55
"name": "David Kircos",
66
"email": "david@quadratichq.com",

quadratic-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quadratic-api",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

quadratic-api/src/routes/v0/examples.POST.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function handler(req: RequestWithUser, res: Response<ApiTypes['/v0/example
4545
}
4646

4747
try {
48-
const apiUrl = `https://api.quadratichq.com/v0/files/${fileUuid}`;
48+
const apiUrl = `https://api-aws.quadratichq.com/v0/files/${fileUuid}`;
4949

5050
// Fetch info about the file
5151
const {

quadratic-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quadratic-client",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"author": {
55
"name": "David Kircos",
66
"email": "david@quadratichq.com",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "0.13.3"
2+
"version": "0.13.4"
33
}

quadratic-connection/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quadratic-connection"
3-
version = "0.13.3"
3+
version = "0.13.4"
44
edition = "2024"
55
authors = ["David DiMaria <david.dimaria@quadratichq.com>"]
66

quadratic-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quadratic-core"
3-
version = "0.13.3"
3+
version = "0.13.4"
44
authors = ["Andrew Farkas <andrew.farkas@quadratic.to>"]
55
edition = "2024"
66
description = "Infinite data grid with Python, JavaScript, and SQL built-in"

0 commit comments

Comments
 (0)