This repository was archived by the owner on Jul 27, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 13 files changed +56
-24
lines changed
Expand file tree Collapse file tree 13 files changed +56
-24
lines changed Original file line number Diff line number Diff line change 1+ <a name =" 0.6.0 " ></a >
2+ # [ 0.6.0] ( https://github.com/monicahq/chandler/compare/0.5.1...0.6.0 ) (2018-06-04)
3+
4+
5+ ### Bug Fixes
6+
7+ * validation of a local network url ([ #271 ] ( https://github.com/monicahq/chandler/issues/271 ) ) ([ bf4280a] ( https://github.com/monicahq/chandler/commit/bf4280a ) )
8+
9+ ### Features
10+
11+ * add the ability to add notes ([ #265 ] ( https://github.com/monicahq/chandler/issues/265 ) ) ([ 49f68e3] ( https://github.com/monicahq/chandler/commit/49f68e3 ) )
12+ * add the ability to edit a note ([ #252 ] ( https://github.com/monicahq/chandler/issues/252 ) ) ([ 2f5126f] ( https://github.com/monicahq/chandler/commit/2f5126f ) )
13+
14+
15+
116<a name =" 0.5.1 " ></a >
217## [ 0.5.1] ( https://github.com/monicahq/chandler/compare/0.5.0...0.5.1 ) (2018-05-30)
318
Original file line number Diff line number Diff line change 1818 dotenv (2.4.0 )
1919 emoji_regex (0.1.1 )
2020 excon (0.62.0 )
21- faraday (0.15.1 )
21+ faraday (0.15.2 )
2222 multipart-post (>= 1.2 , < 3 )
2323 faraday-cookie_jar (0.0.6 )
2424 faraday (>= 0.7.4 )
2525 http-cookie (~> 1.0.0 )
2626 faraday_middleware (0.12.2 )
2727 faraday (>= 0.7.4 , < 1.0 )
2828 fastimage (2.1.3 )
29- fastlane (2.96.1 )
29+ fastlane (2.97.0 )
3030 CFPropertyList (>= 2.3 , < 4.0.0 )
3131 addressable (>= 2.3 , < 3.0.0 )
3232 babosa (>= 1.0.2 , < 2.0.0 )
5050 multipart-post (~> 2.0.0 )
5151 plist (>= 3.1.0 , < 4.0.0 )
5252 public_suffix (~> 2.0.0 )
53- rubyzip (>= 1.1.0 , < 2.0.0 )
53+ rubyzip (>= 1.2.1 , < 2.0.0 )
5454 security (= 0.1.3 )
5555 simctl (~> 1.6.3 )
5656 slack-notifier (>= 2.0.0 , < 3.0.0 )
9999 multi_xml (0.6.0 )
100100 multipart-post (2.0.0 )
101101 nanaimo (0.2.5 )
102- naturally (2.1 .0 )
102+ naturally (2.2 .0 )
103103 os (0.9.6 )
104104 plist (3.4.0 )
105105 public_suffix (2.0.5 )
131131 unf (0.1.4 )
132132 unf_ext
133133 unf_ext (0.0.7.5 )
134- unicode-display_width (1.3.2 )
134+ unicode-display_width (1.3.3 )
135135 word_wrap (1.0.0 )
136136 xcodeproj (1.5.9 )
137137 CFPropertyList (>= 2.3.3 , < 4.0 )
Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ android {
102102 applicationId " com.monicahq.app"
103103 minSdkVersion 16
104104 targetSdkVersion 27
105- versionCode 7
106- versionName " 0.5 .0"
105+ versionCode 9
106+ versionName " 0.6 .0"
107107 ndk {
108108 abiFilters " armeabi-v7a" , " x86"
109109 }
Original file line number Diff line number Diff line change 1212default_platform ( :android )
1313
1414platform :android do
15- desc "Submit a new Beta Build to Android Play store"
15+ desc "Submit a new Alpha Build to Android Play store"
1616 lane :alpha do
1717 increment_version_code
1818 gradle ( task : "assembleRelease" )
@@ -23,6 +23,17 @@ platform :android do
2323 )
2424 end
2525
26+ desc "Submit a new Beta Build to Android Play store"
27+ lane :beta do
28+ increment_version_code
29+ gradle ( task : "assembleRelease" )
30+
31+ supply (
32+ track : "beta" ,
33+ apk : "#{ lane_context [ SharedValues ::GRADLE_APK_OUTPUT_PATH ] } "
34+ )
35+ end
36+
2637 lane :version do |options |
2738 android_set_version_name (
2839 version_name : options [ :version ] ,
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ or alternatively using `brew cask install fastlane`
2020```
2121fastlane android alpha
2222```
23+ Submit a new Alpha Build to Android Play store
24+ ### android beta
25+ ```
26+ fastlane android beta
27+ ```
2328Submit a new Beta Build to Android Play store
2429### android version
2530```
Original file line number Diff line number Diff line change 1818# org.gradle.parallel=true
1919
2020android.useDeprecatedNdk =true
21+ android.enableAapt2 =false
2122
2223MONICA_RELEASE_STORE_FILE =../mobile-credentials/android/monica-release.keystore
2324MONICA_RELEASE_KEY_ALIAS =monica-alias
Original file line number Diff line number Diff line change 1818 dotenv (2.4.0 )
1919 emoji_regex (0.1.1 )
2020 excon (0.62.0 )
21- faraday (0.15.1 )
21+ faraday (0.15.2 )
2222 multipart-post (>= 1.2 , < 3 )
2323 faraday-cookie_jar (0.0.6 )
2424 faraday (>= 0.7.4 )
2525 http-cookie (~> 1.0.0 )
2626 faraday_middleware (0.12.2 )
2727 faraday (>= 0.7.4 , < 1.0 )
2828 fastimage (2.1.3 )
29- fastlane (2.96.1 )
29+ fastlane (2.97.0 )
3030 CFPropertyList (>= 2.3 , < 4.0.0 )
3131 addressable (>= 2.3 , < 3.0.0 )
3232 babosa (>= 1.0.2 , < 2.0.0 )
5050 multipart-post (~> 2.0.0 )
5151 plist (>= 3.1.0 , < 4.0.0 )
5252 public_suffix (~> 2.0.0 )
53- rubyzip (>= 1.1.0 , < 2.0.0 )
53+ rubyzip (>= 1.2.1 , < 2.0.0 )
5454 security (= 0.1.3 )
5555 simctl (~> 1.6.3 )
5656 slack-notifier (>= 2.0.0 , < 3.0.0 )
9797 multi_xml (0.6.0 )
9898 multipart-post (2.0.0 )
9999 nanaimo (0.2.5 )
100- naturally (2.1 .0 )
100+ naturally (2.2 .0 )
101101 os (0.9.6 )
102102 plist (3.4.0 )
103103 public_suffix (2.0.5 )
129129 unf (0.1.4 )
130130 unf_ext
131131 unf_ext (0.0.7.5 )
132- unicode-display_width (1.3.2 )
132+ unicode-display_width (1.3.3 )
133133 word_wrap (1.0.0 )
134134 xcodeproj (1.5.9 )
135135 CFPropertyList (>= 2.3.3 , < 4.0 )
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >APPL </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >0.5 .0 </string >
18+ <string >0.6 .0 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
22- <string >23 </string >
22+ <string >25 </string >
2323 <key >LSRequiresIPhoneOS </key >
2424 <true />
2525 <key >UILaunchStoryboardName </key >
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >BNDL </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >0.5 .0 </string >
18+ <string >0.6 .0 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
22- <string >23 </string >
22+ <string >25 </string >
2323</dict >
2424</plist >
Original file line number Diff line number Diff line change 18161816 ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
18171817 CODE_SIGN_ENTITLEMENTS = Monica/Monica.entitlements;
18181818 CODE_SIGN_STYLE = Manual;
1819- CURRENT_PROJECT_VERSION = 23 ;
1819+ CURRENT_PROJECT_VERSION = 25 ;
18201820 DEAD_CODE_STRIPPING = NO;
18211821 DEVELOPMENT_TEAM = MVHSH3DLRY;
18221822 HEADER_SEARCH_PATHS = (
18531853 CODE_SIGN_ENTITLEMENTS = Monica/Monica.entitlements;
18541854 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
18551855 CODE_SIGN_STYLE = Manual;
1856- CURRENT_PROJECT_VERSION = 23 ;
1856+ CURRENT_PROJECT_VERSION = 25 ;
18571857 DEVELOPMENT_TEAM = MVHSH3DLRY;
18581858 HEADER_SEARCH_PATHS = (
18591859 "$(inherited)",
You can’t perform that action at this time.
0 commit comments