Skip to content

Commit 5a28339

Browse files
committed
bump version to 0.6.0; update feed
1 parent 59d19f6 commit 5a28339

2 files changed

Lines changed: 14 additions & 9 deletions

File tree

DependencyControl.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
"description": "Collection of commonly used functions",
2626
"channels": {
2727
"release": {
28-
"version": "0.5.0",
29-
"released": "2019-02-17",
28+
"version": "0.6.0",
29+
"released": "2019-03-12",
3030
"default": true,
3131
"fileBaseUrl": "@{fileBaseUrl}/v@{version}",
3232
"files": [
3333
{
3434
"name": ".moon",
3535
"url": "@{fileBaseUrl}/Functional.moon",
36-
"sha1": "6518DE7918DDABCA94C4A4454C4BB779F9ED4A65"
36+
"sha1": "BBD3B1ECED42201968ABFB756D683BE2A61DA815"
3737
},
3838
{
3939
"name": ".moon",
4040
"type": "test",
4141
"url": "@{fileBaseUrl}/Tests.moon",
42-
"sha1": "690E43411F74B9822E06021735FDAF787D58A3D7"
42+
"sha1": "1E7E6BED92803B2B7B567B6183644454AB141FFE"
4343
}
4444
],
4545
"requiredModules": [
@@ -55,21 +55,21 @@
5555
]
5656
},
5757
"alpha": {
58-
"version": "0.5.0",
59-
"released": "2019-02-17",
58+
"version": "0.6.0",
59+
"released": "2019-03-12",
6060
"default": false,
6161
"fileBaseUrl": "@{fileBaseUrl}/v@{version}-@{channel}",
6262
"files": [
6363
{
6464
"name": ".moon",
6565
"url": "@{fileBaseUrl}/Functional.moon",
66-
"sha1": "0803D1200632C02931FF31FD60C50D0D0A36B6F5"
66+
"sha1": "BBD3B1ECED42201968ABFB756D683BE2A61DA815"
6767
},
6868
{
6969
"name": ".moon",
7070
"type": "test",
7171
"url": "@{fileBaseUrl}/Tests.moon",
72-
"sha1": "690E43411F74B9822E06021735FDAF787D58A3D7"
72+
"sha1": "1E7E6BED92803B2B7B567B6183644454AB141FFE"
7373
}
7474
],
7575
"requiredModules": [
@@ -86,6 +86,11 @@
8686
}
8787
},
8888
"changelog": {
89+
"0.6.0": [
90+
"list.find() and list.findInRange() now return the index of the found item in the list as a second return value (thanks @Myaamori)",
91+
"util.assTimecode2ms(): fixed null-ref exception due to local tonumber reference being reassigned to nil (thanks @Myaamori)",
92+
"string.split(): added a `limit` parameter to specify the maximum number of split operations (thanks @Myaamori)"
93+
],
8994
"0.5.0": [
9095
"added list.reverse()",
9196
"added unicode.reverse()",

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.5.0",
4+
version: "0.6.0",
55
description: "Collection of commonly used functions",
66
author: "line0",
77
moduleName: "l0.Functional",

0 commit comments

Comments
 (0)