Skip to content

Commit

Permalink
Bumped version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
jguerinet committed Nov 13, 2015
1 parent 77ff2dd commit 4dce298
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## Version 2.1.1 (2015-11-13)
* Added the possibility to initialize TextViewFormItems or its descendants with a string resource Id

## Version 2.1.0 (2015-11-13)
* Added gravity to the form items
* Now using Drawable tinting instead of a color filter to color the icons
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ To include this in your project, you can add it with Gradle by using [JitPack](h
}

dependencies {
compile 'com.github.jguerinet:form-generator:2.1.0'
compile 'com.github.jguerinet:form-generator:2.1.1'
}

To use this in your project, you can either build an instance of the `FormGenerator` with its custom `Builder`, customizing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* MainActivity. Demonstrates the default behavior of the FormGenerator
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 1.0.0
*/
public class MainActivity extends AppCompatActivity {
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

archivesBaseName="form-generator"
version = "2.1.0"
version = "2.1.1"

android{
compileSdkVersion 23
Expand All @@ -27,7 +27,7 @@ android{
defaultConfig{
minSdkVersion 8
targetSdkVersion 23
versionCode 8
versionCode 9
versionName version
}
buildTypes{
Expand Down
2 changes: 1 addition & 1 deletion library/library.iml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id=":library" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="com.guerinet.formgenerator" external.system.module.version="2.1.0" type="JAVA_MODULE" version="4">
<module external.linked.project.id=":library" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="com.guerinet.formgenerator" external.system.module.version="2.1.1" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android-gradle" name="Android-Gradle">
<configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Builder for a {@link Button} form item
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
public class ButtonFormItem extends TextViewFormItem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Builder for an input form item
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
public class EditTextFormItem extends TextViewFormItem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Creates various form items and adds them to a given container
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 1.0.0
*/
public class FormGenerator {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Base Builder for all of the form items (except for line and space)
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
abstract class FormItem extends LineItem{
Expand Down
2 changes: 1 addition & 1 deletion library/src/main/java/com/guerinet/formgenerator/Item.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* The base class for all items that could be present on a form
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
abstract class Item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Builder for a line. Base class for all classes
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
public class LineItem extends Item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Builder for a space.
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
public class SpaceItem extends Item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Builder for a {@link SwitchCompat} form item
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
public class SwitchFormItem extends TextViewFormItem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* Builder for a {@link TextView} form item (buttons, texts, and inputs)
* @author Julien Guerinet
* @version 2.1.0
* @version 2.1.1
* @since 2.0.0
*/
public class TextViewFormItem extends FormItem {
Expand Down

0 comments on commit 4dce298

Please sign in to comment.