Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
Version bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gersomvg committed Nov 22, 2018
1 parent 891efad commit 2b03490
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "Plenty",
"icon": "./src/assets/branding/app-logo.png",
"version": "1.1.0",
"version": "1.2.0",
"slug": "plenty",
"sdkVersion": "28.0.0",
"splash": {
Expand All @@ -12,7 +12,7 @@
"primaryColor": "#FB5758",
"ios": {
"bundleIdentifier": "nl.plentyapp.plenty",
"buildNumber": "1.1.0",
"buildNumber": "1.2.0",
"infoPlist": {
"NSCameraUsageDescription":
"This app uses the camera to scan barcodes of products.",
Expand All @@ -22,7 +22,7 @@
},
"android": {
"package": "nl.plentyapp.plenty",
"versionCode": 110,
"versionCode": 120,
"permissions": [
"CAMERA",
"MANAGE_DOCUMENTS",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plenty",
"version": "1.1.0",
"version": "1.2.0",
"description": "Plenty app. Scan products to see if they are vegan (Dutch).",
"author": "Gersom van Ginkel <[email protected]>",
"private": true,
Expand Down
7 changes: 4 additions & 3 deletions src/config/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
export * from './styling';

export const API_ENDPOINT = {
// development: 'http://localhost:3001/api/v1',
//development: 'https://plenty-staging.herokuapp.com/api/v1',
development: 'https://plenty-production.herokuapp.com/api/v1',
development: 'http://localhost:3001/api/v1',
// development: 'https://plenty-development.herokuapp.com/api/v1',
// development: 'https://plenty-staging.herokuapp.com/api/v1',
// development: 'https://plenty-production.herokuapp.com/api/v1',
production: 'https://plenty-production.herokuapp.com/api/v1',
}[process.env.NODE_ENV];

0 comments on commit 2b03490

Please sign in to comment.