Skip to content

Commit

Permalink
Merge pull request #29 from open-sauced/beta
Browse files Browse the repository at this point in the history
chore: release 1.2.0
  • Loading branch information
jpmcb authored Jan 30, 2024
2 parents 7d994ab + 756ca51 commit 87c3ff8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
NEXT_PUBLIC_API_URL=https://api.opensauced.pizza/v1
NEXT_PUBLIC_V2_API_URL=https://beta.api.opensauced.pizza/v2
NEXT_PUBLIC_API_URL=https://api.opensauced.pizza/v2
NEXT_PUBLIC_BETA_API_URL=https://beta.api.opensauced.pizza/v2
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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


### 🍕 Features
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_V2_API_URL;
const baseUrl = process.env.NEXT_PUBLIC_BETA_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",
"version": "1.2.0-beta.1",
"private": true,
"license": "MIT",
"homepage": "https://contributor.info",
Expand Down

0 comments on commit 87c3ff8

Please sign in to comment.