Skip to content

Commit

Permalink
Merge pull request #32 from open-sauced/beta
Browse files Browse the repository at this point in the history
main <- beta
  • Loading branch information
bdougie authored Jan 30, 2024
2 parents 87c3ff8 + 4814fa6 commit 50704a9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
NEXT_PUBLIC_API_URL=https://api.opensauced.pizza/v2
NEXT_PUBLIC_V2_API_URL=https://api.opensauced.pizza/v2
NEXT_PUBLIC_BETA_API_URL=https://beta.api.opensauced.pizza/v2
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@

> All notable changes to this project will be documented in this file
### [1.2.1-beta.1](https://github.com/open-sauced/contributor.info/compare/v1.2.0...v1.2.1-beta.1) (2024-01-30)


### 🐛 Bug Fixes

* env url ([#31](https://github.com/open-sauced/contributor.info/issues/31)) ([4b4f342](https://github.com/open-sauced/contributor.info/commit/4b4f3421fe181c61d06fd9426d87bcf99c19d66b))

## [1.2.0-beta.1](https://github.com/open-sauced/contributor.info/compare/v1.1.0...v1.2.0-beta.1) (2024-01-05)


Expand Down
2 changes: 1 addition & 1 deletion hooks/useSWR.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Fetcher } from "swr";

const baseUrl = process.env.NEXT_PUBLIC_BETA_API_URL;
const baseUrl = process.env.NEXT_PUBLIC_V2_API_URL;

const apiFetcher: Fetcher = async (apiUrl: string) => {
const res = await fetch(`${baseUrl}/${apiUrl}`, { headers: { accept: "application/json" } });
Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.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": "@open-sauced/contributors.info",
"version": "1.2.0-beta.1",
"version": "1.2.1-beta.1",
"private": true,
"license": "MIT",
"homepage": "https://contributor.info",
Expand Down

0 comments on commit 50704a9

Please sign in to comment.