Skip to content

Commit 9e57da3

Browse files
committed
bump version; update feed
1 parent d22e664 commit 9e57da3

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

DependencyControl.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"dependencyControlFeedFormatVersion": "0.2.0",
2+
"dependencyControlFeedFormatVersion": "0.3.0",
33
"name": "Functional",
44
"description": "The official Functional repository.",
55
"baseUrl": "https://github.com/TypesettingTools/Functional",
@@ -26,14 +26,14 @@
2626
"fileBaseUrl": "@{fileBaseUrl}v@{version}-@{channel}/",
2727
"channels": {
2828
"alpha": {
29-
"version": "0.2.0",
30-
"released": "2015-01-02",
29+
"version": "0.3.0",
30+
"released": "2015-01-24",
3131
"default": true,
3232
"files": [
3333
{
3434
"name": ".moon",
3535
"url": "@{fileBaseUrl}Functional.moon",
36-
"sha1": "BFA3413FE26ACAA711106B21BB476C8C6BBDF112"
36+
"sha1": "E3AD5920156642090CA4E0AD589172912A4C5AE3"
3737
},
3838
{
3939
"name": ".moon",
@@ -56,6 +56,12 @@
5656
}
5757
},
5858
"changelog": {
59+
"0.3.0": [
60+
"added 2D vector math: math.vector2.distance returns the distance between 2 points (or the length of a 2D vector), math.vector2.normalize normalizes a vector to a specified length (1 by default).",
61+
"added math.degrees (converts radians to degrees), math.sign (returns the sign of a number as 1, 0, or -1) and math.nan as an NaN constant.",
62+
"added list.groupBy: creates a table composed of keys generated from the results of applying the specified selector (a callback or property name) to each list element, with the value being a list of all elements generating the same key."
63+
"table.values now allows for specifying an optional sorting function to run on the generated list."
64+
],
5965
"0.2.0": [
6066
"added string.pad: pads a string with repetitions of another string up to a defined character limit. Pads with zeros by default.",
6167
"added util.formatTimecode: formats a time in milliseconds according to a .NET-like format string, e.g. 'h:mm:ss.ff'for ASS time codes.",

Functional.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DependencyControl = require "l0.DependencyControl"
22
version = DependencyControl{
33
name: "(Almost) Functional Suite",
4-
version: "0.2.0",
4+
version: "0.3.0",
55
description: "Collection of commonly used functions",
66
author: "line0",
77
moduleName: "l0.Functional",

0 commit comments

Comments
 (0)