refactor: deprecations for 2.6.0 are now 3.0.0

* 2.6.0 -> 2.6.1 (fixes, quicker release)
 * 2.6.0 -> 3.0.0 (big picture, breaking change, slower release)
This commit is contained in:
Connor Tumbleson 2021-09-01 07:25:58 -04:00
parent 8bcab69f25
commit 5fa165a023
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public class Main {
commandLine = parser.parse(allOptions, args, false);
if (! OSDetection.is64Bit()) {
System.err.println("32 bit support is deprecated. Apktool will not support 32bit on v2.6.0.");
System.err.println("32 bit support is deprecated. Apktool will not support 32bit on v3.0.0.");
}
} catch (ParseException ex) {
System.err.println(ex.getMessage());
@ -223,7 +223,7 @@ public class Main {
apkOptions.aaptPath = cli.getOptionValue("a");
}
if (cli.hasOption("c") || cli.hasOption("copy-original")) {
System.err.println("-c/--copy-original has been deprecated. Removal planned for v2.6.0 (#2129)");
System.err.println("-c/--copy-original has been deprecated. Removal planned for v3.0.0 (#2129)");
apkOptions.copyOriginalFiles = true;
}
if (cli.hasOption("p") || cli.hasOption("frame-path")) {