Skip to content

Commit

Permalink
Bump version to 4.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Apr 28, 2013
1 parent a6a6637 commit af90d98
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Change Log
===============================================================================

Version 4.3.1 *(In Development)*
--------------------------------
Version 4.3.1 *(2013-04-28)*
----------------------------

* Fix: Importing library into Eclipse as a Maven module now works correctly.
* Prevent dispatching touch events to both action bar and content view on API
Expand Down
19 changes: 16 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
ActionBarSherlock Release Process
=================================

1. Make sure she builds! `mvn clean verify`
1. Make sure she builds!

mvn clean verify

2. Ensure the `CHANGELOG.md` file has up-to-date information and the current date.
3. Pull in the latest translations in the i18n module.
4. Change all of the sample `AndroidManifest.xml` files to the correct version and bump the
version code arbitrarily.
5. `mvn clean release:clean && mvn release:prepare release:perform`

find actionbarsherlock-samples -name AndroidManifest.xml -exec sed -i '' 's|versionCode="[0-9]*"|versionCode="431"|g' {} \;
find actionbarsherlock-samples -name AndroidManifest.xml -exec sed -i '' 's|versionName="[0-9.]*"|versionName="4.3.1"|g' {} \;

5. Make the release!

mvn clean release:clean
mvn release:prepare release:perform

6. Promote the Maven artifact on Sonatype's OSS Nexus install.
7. Deploy website using `deploy_website.sh` script.
7. Deploy the latest website.

./deploy_website.sh
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/demos/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock.sample.demos">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.demos">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/fragments/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
attribute brings in the Android platform namespace, and the package
supplies a unique name for the application. When writing your
own application, the package name must be changed from "com.example.*"
to come from a domain that you own or have control over. --><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock.sample.fragments">
to come from a domain that you own or have control over. --><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.fragments">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/known-bugs/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock.sample.knownbugs">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.knownbugs">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/roboguice/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock.sample.roboguice">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.roboguice">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/styled/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock.sample.styled">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.styled">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>

Expand Down

0 comments on commit af90d98

Please sign in to comment.