Skip to content

Releases: green-nick/properties

Fix extensions outputs

12 Apr 10:55
Compare
Choose a tag to compare
  • change output for union extension from Property to MutableProperty;
  • change output for mapper extension from Property to MutableProperty;

New extensions

12 Apr 10:38
Compare
Choose a tag to compare
  • add plus-assign operator to CompositeSubscription;
  • add union function for properties;
  • add mapper function for properties;

Primitives support

22 Feb 23:09
8fb4c3d
Compare
Choose a tag to compare

Now you can use Properties for such primitives as Int, Long, Double, Boolean without boxing.

Replace getter and setter functions with Kotlin's property

21 Feb 17:51
644d112
Compare
Choose a tag to compare

Warning! Breaking api release.
Getter and setter functions was replaced with Kotlin's property.
Was:

val property = propertyOf("hello)

property.get() // "hello"
property.set("world")
property.get() // "world"

Became:

val property = propertyOf("hello)

property.value // "hello"
property.value = "world"
property.value // "world"

First release of properties

12 Feb 18:23
5f95f24
Compare
Choose a tag to compare
Merge pull request #1 from green-nick/dev

Dev