1.1.0 (Feb. 21, 2016)

    * Adds support for matching strings based on regular expressions. Example:

        from typeargs import re, typeargs

        phoneNumber = re(r'\d{3}-\d{4}')
        ssn         = re(r'\d{3}-\d{2}-\d{4}')
        fullName    = re(r'\w+ \w+')

        @typeargs(fullName, ssn, phoneNumber)
        def infos(fullName, ssn, phoneNumber):
            print(fullName, ssn, phoneNumber)

        infos('752-2723', 'Taylor Marks', '123-45-6789')
        # Prints out ('Taylor Marks', '123-45-6789', '752-2723')

1.0.0 (Feb. 7, 2016)

    * Initial commit