Skip to content

Commit

Permalink
relicense to MIT
Browse files Browse the repository at this point in the history
  • Loading branch information
jonstoler committed Nov 15, 2017
1 parent f74181d commit 75d30d2
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 28 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
# 2.0.0
* switch to MIT license

# 1.0.1
* indicate support for TOML 0.4.0 via `TOML.version`
* fix encoding of simple arrays
Expand Down
5 changes: 5 additions & 0 deletions LICENSE
@@ -0,0 +1,5 @@
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 changes: 6 additions & 28 deletions README.md
Expand Up @@ -5,7 +5,7 @@
Use [toml](https://github.com/toml-lang/toml) with lua!

Latest supported version: 0.4.0
Current lua-toml version: 1.0.1
Current lua-toml version: 2.0.0

# Usage

Expand All @@ -27,36 +27,14 @@ or:
# License

lua-toml is licensed under [The Happy License](https://github.com/jonstoler/The-Happy-License).
lua-toml is licensed under [MIT](https://opensource.org/licenses/MIT).

```
SUMMARY (IN PLAIN-ENGLISH)
Copyright (c) 2017 Jonathan Stoler
Congratulations, you've got something with the best licence ever.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Basically, you're free to do what you want with it; as long as you do something
good (help someone out, smile; just be nice), you can use this on anything you
fancy.
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Of course, if it all breaks, it’s totally not the author's fault.
Enjoy!
THE FULL LICENSE AGREEMENT
By attaching this document to the given files (the "work"), you, the licensee,
are hereby granted free usage in both personal and commercial environments,
without any obligation of attribution or payment (monetary or otherwise). The
licensee is free to use, copy, modify, publish, distribute, sublicence, and/or
merchandise the work, subject to the licensee inflecting a positive message
unto someone. This includes (but is not limited to): smiling, being nice,
saying "thank you", assisting other persons, or any similar actions percolating
the given concept.
The above copyright notice serves as a permissions notice also, and may
optionally be included in copies or portions of the work.
The work is provided "as is", without warranty or support, express or implied.
The author(s) are not liable for any damages, misuse, or other claim, whether
from or as a consequence of usage of the given work.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```
23 changes: 23 additions & 0 deletions rockspecs/lua-toml-2.0-0.rockspec
@@ -0,0 +1,23 @@
package = "lua-toml"
version = "2.0-0"
source = {
url = "git://github.com/jonstoler/lua-toml.git",
tag = "v2.0.0",
}
description = {
summary = "toml decoder/encoder for Lua",
detailed = [[
TOML 0.4.0 compliant Lua library with tests. Serializes TOML into a Lua table, and serlaizes Lua tables into TOML.]],
homepage = "https://github.com/jonstoler/lua-toml",
license = "MIT",
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
toml = "toml.lua",
},
copy_directories = {"spec"},
}

0 comments on commit 75d30d2

Please sign in to comment.