From a41b5a0bddf9afa3aa26fa7e6b0b1ed0a73883c6 Mon Sep 17 00:00:00 2001 From: Bruno Lemos Date: Mon, 20 Jan 2020 04:34:45 -0300 Subject: [PATCH] v0.100.0 --- landing/package.json | 8 +++++--- landing/src/pages/DownloadPage.tsx | 4 ++-- landing/yarn.lock | 8 ++++---- package.json | 2 +- packages/components/package.json | 4 ++-- packages/components/src/components/common/AppVersion.tsx | 2 +- packages/core/package.json | 2 +- packages/desktop/package.json | 4 ++-- packages/mobile/android/app/build.gradle | 4 ++-- packages/mobile/ios/DevHub.xcodeproj/project.pbxproj | 4 ++-- packages/mobile/ios/devhub/Info.plist | 2 +- packages/mobile/package.json | 4 ++-- packages/web/package.json | 4 ++-- 13 files changed, 27 insertions(+), 25 deletions(-) diff --git a/landing/package.json b/landing/package.json index 259830721..e378d810b 100644 --- a/landing/package.json +++ b/landing/package.json @@ -1,21 +1,23 @@ { "name": "@devhub/landing", - "version": "0.99.1", + "version": "0.100.0", "private": false, "main": "dist/index.js", "scripts": { "clean": "shx rm -f *.tsbuildinfo && shx rm -rf dist && mkdirp dist", "compile": "cd .", "deploy": "yarn now", - "export": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./src/scripts/refresh-cached-public-plans && next build && next export", + "export": "yarn run-scripts && next build && next export", "format": "prettier --write '{.,src/**}/*.{js,jsx,ts,tsx}'", "lint": "tslint -p .", "now": "now", + "postinstall": "yarn run-scripts", "prepare": "cd .", + "run-scripts": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node ./src/scripts/refresh-cached-public-plans", "start": "next -p 3001" }, "dependencies": { - "@brunolemos/devhub-core": "0.99.1-7", + "@brunolemos/devhub-core": "0.100.0", "@zeit/next-css": "1.0.1", "autoprefixer": "9.6.4", "classnames": "2.2.6", diff --git a/landing/src/pages/DownloadPage.tsx b/landing/src/pages/DownloadPage.tsx index 1cb19fb0c..cdd986b80 100644 --- a/landing/src/pages/DownloadPage.tsx +++ b/landing/src/pages/DownloadPage.tsx @@ -64,8 +64,8 @@ export default function DownloadPage(_props: DownloadPageProps) { const category = _category || system.category || 'web' const { os } = system - const version = '0.99.1' - const releaseDate = '2019-12-11' + const version = '0.100.0' + const releaseDate = '2020-01-20' return ( diff --git a/landing/yarn.lock b/landing/yarn.lock index 1a0c0a6eb..cf1c0b64a 100644 --- a/landing/yarn.lock +++ b/landing/yarn.lock @@ -1157,10 +1157,10 @@ lodash "^4.17.13" to-fast-properties "^2.0.0" -"@brunolemos/devhub-core@0.99.1-7": - version "0.99.1-7" - resolved "https://registry.npmjs.org/@brunolemos/devhub-core/-/devhub-core-0.99.1-7.tgz#cba94f3637a20ce52752c6a2bc1ac6925f6277ae" - integrity sha512-Ry/ArEXc090+zohC5nuURbPE34H4xjarDVI5ZPx9pRtRTmlGPX1604vtZTVT734/sibaAsZayIQhqJRXRGLZ/A== +"@brunolemos/devhub-core@0.100.0": + version "0.100.0" + resolved "https://registry.npmjs.org/@brunolemos/devhub-core/-/devhub-core-0.100.0.tgz#2f1abd87ea64eed3790e97c4314d8280b1ae1a3f" + integrity sha512-0VGaoZsIhWS+A4UUinC3cVO1+2TfOVRw0qpr4WqzhZLRQ8ni976D4Ca8CKX7GIrNdS/OqVmEh7LS4dj62/FteQ== dependencies: "@octokit/rest" "16.20.0" axios "0.19.0" diff --git a/package.json b/package.json index ccd916386..a139b495f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "devhub", - "version": "0.99.1", + "version": "0.100.0", "private": true, "author": { "name": "Bruno Lemos", diff --git a/packages/components/package.json b/packages/components/package.json index b29bb5e62..94604d62a 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@devhub/components", - "version": "0.99.1", + "version": "0.100.0", "private": false, "main": "dist", "scripts": { @@ -14,7 +14,7 @@ "@brunolemos/react-window-without-virtualization": "1.8.5-withoutvirtualization.1", "@bugsnag/js": "6.4.1", "@bugsnag/plugin-react": "6.4.0", - "@devhub/core": "0.99.1", + "@devhub/core": "0.100.0", "@octokit/rest": "16.20.0", "axios": "0.19.0", "fbemitter": "2.1.1", diff --git a/packages/components/src/components/common/AppVersion.tsx b/packages/components/src/components/common/AppVersion.tsx index 853e69df7..3b3101071 100644 --- a/packages/components/src/components/common/AppVersion.tsx +++ b/packages/components/src/components/common/AppVersion.tsx @@ -38,7 +38,7 @@ export function AppVersion() { } export function getAppVersionLabel() { - const buildNumber = 2630 + const buildNumber = 2667 return `v${constants.APP_VERSION}${ constants.IS_BETA && !constants.APP_VERSION.includes('beta') diff --git a/packages/core/package.json b/packages/core/package.json index 63ecd1e71..785b6a41e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@devhub/core", - "version": "0.99.1", + "version": "0.100.0", "private": false, "main": "dist/index.js", "scripts": { diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 352face6e..5aac9bed2 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@devhub/desktop", - "version": "0.99.1", + "version": "0.100.0", "private": false, "main": "dist/index.js", "author": { @@ -81,7 +81,7 @@ } }, "dependencies": { - "@devhub/core": "0.99.1", + "@devhub/core": "0.100.0", "electron-fetch": "1.3.0", "electron-store": "5.0.0", "electron-updater": "4.1.2", diff --git a/packages/mobile/android/app/build.gradle b/packages/mobile/android/app/build.gradle index a02a89aa1..9bb14883e 100644 --- a/packages/mobile/android/app/build.gradle +++ b/packages/mobile/android/app/build.gradle @@ -139,8 +139,8 @@ android { applicationId "com.devhubapp" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 2630 - versionName "0.99.1" + versionCode 2667 + versionName "0.100.0" } splits { abi { diff --git a/packages/mobile/ios/DevHub.xcodeproj/project.pbxproj b/packages/mobile/ios/DevHub.xcodeproj/project.pbxproj index 38ed0fb15..d0116e33c 100644 --- a/packages/mobile/ios/DevHub.xcodeproj/project.pbxproj +++ b/packages/mobile/ios/DevHub.xcodeproj/project.pbxproj @@ -469,7 +469,7 @@ baseConfigurationReference = B85B3B59CAE1B55F143AB90A /* Pods-devhub.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CURRENT_PROJECT_VERSION = 2630; + CURRENT_PROJECT_VERSION = 2667; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = JNXGJS86YQ; HEADER_SEARCH_PATHS = ( @@ -523,7 +523,7 @@ baseConfigurationReference = F4B98D48329AD19DA2E90F6A /* Pods-devhub.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CURRENT_PROJECT_VERSION = 2630; + CURRENT_PROJECT_VERSION = 2667; DEVELOPMENT_TEAM = JNXGJS86YQ; HEADER_SEARCH_PATHS = ( "$(inherited)", diff --git a/packages/mobile/ios/devhub/Info.plist b/packages/mobile/ios/devhub/Info.plist index 4c4179729..7280e0901 100644 --- a/packages/mobile/ios/devhub/Info.plist +++ b/packages/mobile/ios/devhub/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.99.1 + 0.100.0 CFBundleSignature ???? CFBundleURLTypes diff --git a/packages/mobile/package.json b/packages/mobile/package.json index a452d3a40..a423dcd9a 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@devhub/mobile", - "version": "0.99.1", + "version": "0.100.0", "private": false, "scripts": { "android": "react-native run-android", @@ -17,7 +17,7 @@ "xcode": "open ios/devhub.xcworkspace" }, "dependencies": { - "@devhub/components": "0.99.1", + "@devhub/components": "0.100.0", "@react-native-firebase/analytics": "6.0.0", "@react-native-firebase/app": "6.0.0", "bugsnag-react-native": "2.23.2", diff --git a/packages/web/package.json b/packages/web/package.json index 1fb227dbe..3b09ca941 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@devhub/web", - "version": "0.99.1", + "version": "0.100.0", "private": false, "homepage": "./", "scripts": { @@ -18,7 +18,7 @@ "test": "react-app-rewired test" }, "dependencies": { - "@devhub/components": "0.99.1", + "@devhub/components": "0.100.0", "localforage": "1.7.3", "react": "16.12.0", "react-app-polyfill": "1.0.4",