Skip to content

Commit 4f750a6

Browse files
committed
Update version number
1 parent 73796dc commit 4f750a6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Abelhas is (c) 2005-2011 Alexandre Erwin Ittner <[email protected]>
1+
Abelhas is (c) 2005-2012 Alexandre Erwin Ittner <[email protected]>
22

33
Abelhas is copyrighted free software: it can be used for both academic
44
and commercial purposes at absolutely no cost. There are no royalties

abelhas-1.0-0.rockspec abelhas-1.1-0.rockspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "abelhas"
2-
version = "1.0-0"
2+
version = "1.1-0"
33

44
source = {
5-
url = "http://luaforge.net/frs/download.php/2658/abelhas-1.0.tar.gz",
5+
url = "https://github.com/ittner/abelhas/download/abelhas-1.1.tar.gz",
66
}
77

88
description = {
@@ -13,7 +13,7 @@ Abelhas (aka Lua PSO) is a Lua library for particle swarm optimization (PSO), a
1313
For people familiarized with particle swarms, Abelhas is a particle swarm optimizer that uses global neighborhood, speed limits and particle replacement. It does not have the concept of inertia.
1414
]],
1515
license = "MIT/X11",
16-
homepage = "http://abelhas.luaforge.net/",
16+
homepage = "http://ittner.github.com/abelhas/",
1717
maintainer = "Alexandre Erwin Ittner <[email protected]>"
1818
}
1919

pso.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--- PSO - A Lua module for particle swarm optmization.
2-
--- (c) 2005-2011 Alexandre Erwin Ittner <[email protected]>
2+
--- (c) 2005-2012 Alexandre Erwin Ittner <[email protected]>
33
--- For more information, see: http://ittner.github.com/abelhas/
44
---
55
---
@@ -31,7 +31,7 @@
3131
local M = { }
3232
local MT = { }
3333

34-
M.VERSION = "1.0"
34+
M.VERSION = "1.1"
3535
M.TERM_CONVERGED = 1
3636
M.TERM_MAX_ITERATIONS = 2
3737
M.TERM_MAX_STAGNATION = 3

0 commit comments

Comments
 (0)