From c459a523d7fa0a0388d3d4554675910312ee7018 Mon Sep 17 00:00:00 2001 From: line0 Date: Sat, 2 Jan 2016 18:32:04 +0100 Subject: [PATCH] bump version; update feed --- DependencyControl.json | 17 ++++++++++++++--- Functional.moon | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/DependencyControl.json b/DependencyControl.json index cb0faa0..70c907b 100644 --- a/DependencyControl.json +++ b/DependencyControl.json @@ -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": [ @@ -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." ] diff --git a/Functional.moon b/Functional.moon index faa627f..21aaeaf 100644 --- a/Functional.moon +++ b/Functional.moon @@ -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",