Skip to content

Releases: ankurp/Dollar

v2.2.0

17 Apr 00:57
Compare
Choose a tag to compare

Changelog

  • Added flatMap function
  • Added random function
  • Int extension to convert Int to Time and Date
  • Removed isEmpty() method in Dictionary in favor of isEmpty computated variable
  • Removed forced parameter name dictionary and array variable when calling merge function
  • Adding Cocoa Pod support
  • Fixed project where folder with space causes build to fail

3.0.0-alpha

16 Apr 01:06
Compare
Choose a tag to compare
Removing Optional tests

v2.1.1

22 Feb 03:14
Compare
Choose a tag to compare

Change log

  • Fixing project structure to support installation using Carthage

v2.1.0

03 Jan 13:16
Compare
Choose a tag to compare

Changelog

  • Update method signature of the following methods in Dollar and Cent projects
    1. find
    2. findIndex
    3. remove
    4. findLastIndex
    5. every
  • Added each and eachWithIndex

v2.0.1

24 Dec 20:33
Compare
Choose a tag to compare

Change log

  • Encapsulating Chain into Dollar namespace. Now you can create a Chain wrapper by calling $.chain(...)
  • Chain(...) will be deprecated in the future.

v2.0.0

17 Dec 03:33
Compare
Choose a tag to compare

Change Log

  1. Chaining has been refactored and renamed to Chain from $ along with using generics instead of forcing typecast at the end of the chained operation
  2. Chains terminate for certain operation such as first, all, any, etc. and lazily evaluates at the end when .value property is accessed.
  3. Dollar class is renamed to $ and the typealias for $ is removed.

v1.3.0

05 Dec 20:50
Compare
Choose a tag to compare

Change Log

  • Using generics for zip and flatten and making extensions internal
  • Adding once, cycle, fetch to Dollar
  • Character extension in Cent
  • Adding more extensions to String and helper methods to Regex class
  • Adding << extension to Array
  • Preserving order in uniq and uniq by

v1.2.0

11 Nov 02:25
Compare
Choose a tag to compare

Change Log

  • Updating map functions and delegating it to the Swift map function
  • Adding compose function
  • Adding curry function and generator script that automatically generates the curry function file

v1.1.0

26 Oct 14:49
Compare
Choose a tag to compare

Upgrading library to work with new Swift syntax in Xcode 6.1

v1.0.0

17 Oct 02:46
Compare
Choose a tag to compare

Change Log

  • Updating range syntax to include to and from in the parameters
  • Adding overloaded method for range that take through parameter
  • All Tests are working and Pass