Skip to content

Commit

Permalink
bump version; update feed
Browse files Browse the repository at this point in the history
  • Loading branch information
line0 committed Jan 2, 2016
1 parent 0ebf234 commit c459a52
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
17 changes: 14 additions & 3 deletions DependencyControl.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,20 @@
"fileBaseUrl": "@{fileBaseUrl}v@{version}-@{channel}/",
"channels": {
"alpha": {
"version": "0.1.0",
"released": "2015-11-22",
"version": "0.2.0",
"released": "2015-01-02",
"default": true,
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}Functional.moon",
"sha1": "55C4D9EABE4E755075A4A332DAE9612B2399E390"
"sha1": "BFA3413FE26ACAA711106B21BB476C8C6BBDF112"
},
{
"name": ".moon",
"type": "test",
"url": "@{fileBaseUrl}Tests.moon",
"sha1": "690E43411F74B9822E06021735FDAF787D58A3D7"
}
],
"requiredModules": [
Expand All @@ -50,6 +56,11 @@
}
},
"changelog": {
"0.2.0": [
"added string.pad: pads a string with repetitions of another string up to a defined character limit. Pads with zeros by default.",
"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.",
"list.removeWhere now defaults to shifting up fields to keep the list continuous. A parameter was added to switch to sparse mode."
],
"0.1.0": [
"Initial release."
]
Expand Down
2 changes: 1 addition & 1 deletion Functional.moon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DependencyControl = require "l0.DependencyControl"
version = DependencyControl{
name: "(Almost) Functional Suite",
version: "0.1.0",
version: "0.2.0",
description: "Collection of commonly used functions",
author: "line0",
moduleName: "l0.Functional",
Expand Down

0 comments on commit c459a52

Please sign in to comment.