diff --git a/CHANGELOG.md b/CHANGELOG.md
index 27d3132..692a09c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog
-## v0.3.0
+## v0.3.0 (2021.12.26)
This should be the last minor release before v1 stable is released.
diff --git a/config.ld b/config.ld
index 90bc686..671de40 100644
--- a/config.ld
+++ b/config.ld
@@ -1,5 +1,5 @@
project = 'lua-fort'
-title = 'lua-fort documentation v0.2.0'
+title = 'lua-fort docs v0.3.0'
description = 'An ASCII formatted table generating library'
format = 'discount'
backtick_references = true
diff --git a/docs/classes/fort.html b/docs/classes/fort.html
index 9f1ea3f..8ce8682 100644
--- a/docs/classes/fort.html
+++ b/docs/classes/fort.html
@@ -3,7 +3,7 @@
-
Changelog
-
+
-
v0.3.0
+
v0.3.0 (2021.12.26)
This should be the last minor release before v1 stable is released.
diff --git a/docs/manual/README.md.html b/docs/manual/README.md.html
index dcfcc27..624e7dd 100644
--- a/docs/manual/README.md.html
+++ b/docs/manual/README.md.html
@@ -3,7 +3,7 @@
-
lua-fort documentation v0.2.0
+
lua-fort docs v0.3.0
diff --git a/rockspecs/lua-fort-0.3.0-1.rockspec b/rockspecs/lua-fort-0.3.0-1.rockspec
new file mode 100644
index 0000000..f529192
--- /dev/null
+++ b/rockspecs/lua-fort-0.3.0-1.rockspec
@@ -0,0 +1,49 @@
+local package_name = "lua-fort"
+local package_version = "0.3.0"
+local rockspec_revision = "1"
+local github_account_name = "nathanrpage97"
+local github_repo_name = package_name
+local git_checkout = package_version == "dev" and "master" or
+ ("v" .. package_version)
+
+package = package_name
+version = package_version .. "-" .. rockspec_revision
+
+rockspec_format = "3.0"
+source = {
+ url = "git://github.com/" .. github_account_name .. "/" .. package_name,
+ tag = git_checkout
+}
+
+description = {
+ summary = "A lua wrapper around the libfort ascii table c library",
+ detailed = [[
+ The lua-fort module provides ASCII table support for Lua. It wraps the fort library
+ https://github.com/seleznevae/libfort.
+ ]],
+ homepage = "https://" .. github_account_name .. ".github.io/" ..
+ github_repo_name,
+ license = "MIT"
+}
+
+dependencies = {"lua >= 5.1"}
+
+build = {
+ type = "builtin",
+ modules = {
+ cfort = {
+ sources = {"src/lfort.c", "src/fort.c"},
+ -- disable wchar as it isnt needed for lua
+ defines = {"FT_CONGIG_DISABLE_WCHAR"}
+ }
+ },
+ install = {lua = {fort = "src/fort.lua"}},
+ -- Override default build options (per platform)
+ platforms = {},
+ copy_directories = {"examples", "spec", "docs"}
+}
+
+test_dependencies = {"busted"}
+
+test = {type = "busted"}
+