Skip to content
This repository was archived by the owner on Dec 14, 2021. It is now read-only.

Commit f085c8c

Browse files
author
Elise Richards
authored
958: Release 3.0.0 (#979)
* Update build version and build number to 3.0.0 * Release notes for 3.0.0 * Turn features for edit, delete, and autofill capture ON. * Update version code to match latest Bitrise number
1 parent d04e5e3 commit f085c8c

3 files changed

Lines changed: 24 additions & 6 deletions

File tree

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ android {
2121
minSdkVersion 24
2222
//noinspection OldTargetApi
2323
targetSdkVersion 26
24-
versionCode 4939
25-
versionName "2.0.1"
24+
versionCode 5132
25+
versionName "3.0.0"
2626
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2727
// The following argument makes the Android Test Orchestrator run its
2828
// "pm clear" command after each test invocation. This command ensures

app/src/main/java/mozilla/lockbox/support/FeatureFlags.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ object FeatureFlags {
2121
val CRUD_UPDATE_AND_DELETE = when {
2222
isDebug -> true
2323
isTesting -> true
24-
isRelease -> false
25-
else -> false
24+
isRelease -> true
25+
else -> true
2626
}
2727

2828
/**
@@ -44,7 +44,7 @@ object FeatureFlags {
4444
val AUTOFILL_CAPTURE = when {
4545
isDebug -> true
4646
isTesting -> true
47-
isRelease -> false
48-
else -> false
47+
isRelease -> true
48+
else -> true
4949
}
5050
}

docs/release-notes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Release Notes
22

3+
## 3.0.0 (Build 5068)
4+
5+
Add capabilities to edit entries, delete entries, and capture new entries from autofill.
6+
7+
All changes since version 2.0.0:
8+
9+
- 948: Prevent duplicates during edit
10+
- Cache access tokens (#945)
11+
- 873: Update faq links to sumo (#951)
12+
- Import l10n. (#964)
13+
- 956: Disable editing hostname (#963)
14+
- 938-uitests-add-error-handling-edit-view (#966)
15+
- 920-add-new-edit-screenshots-tests (#922)
16+
- Add intent filter for launching app from a URL (#967)
17+
- Autofill capture an existing login new to Lockwise (#943)
18+
- 899: UX cleanup for edit (#962)
19+
- 969 refactor screenshotstests use robot (#970)
20+
321
## 2.0.0 (Build 4820)
422

523
Refine telemetry for sync and fix crashes.

0 commit comments

Comments
 (0)