Skip to content

Commit

Permalink
release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Jul 11, 2021
1 parent dced80d commit 190b336
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.com/Tieske/uuid.svg?branch=master)](https://travis-ci.com/Tieske/uuid)

uuid
====

Expand Down Expand Up @@ -28,6 +30,12 @@ and LuaCheck for linting.
Changes
=======

0.3 11-Jul-2021

- Fix: set proper type for UUIDv4 type
- Feat: improve seeding for OpenResty
- Doc: fix link in readme

0.2 09-May-2013

- Bugfix; 0-hex was displayed as "" instead of "00", making some uuids too short
Expand Down
35 changes: 35 additions & 0 deletions rockspecs/uuid-0.3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
local package_name = "uuid"
local package_version = "0.3"
local rockspec_revision = "1"
local github_account_name = "Tieske"
local github_repo_name = package_name


package = package_name
version = package_version.."-"..rockspec_revision
source = {
url = "git://github.com/"..github_account_name.."/"..github_repo_name..".git",
branch = (package_version == "dev") and "master" or nil,
tag = (package_version ~= "dev") and package_version or nil,
}

description = {
summary = "Generates uuids in pure Lua",
detailed = [[
Generates uuids in pure Lua, but requires a
good random seed or a unique string. Please check the documentation.
]],
license = "Apache 2.0",
homepage = "https://github.com/"..github_account_name.."/"..github_repo_name,
}

dependencies = {
"lua >= 5.1",
}

build = {
type = "builtin",
modules = {
["uuid"] = "src/uuid.lua",
},
}

0 comments on commit 190b336

Please sign in to comment.