Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François Perrad
lua-MessagePack
Commits
d518dbaa
Commit
d518dbaa
authored
Jan 20, 2018
by
François Perrad
Browse files
prepare release 0.5.1
parent
ed3598c9
Changes
9
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
d518dbaa
Revision history for lua-MessagePack
0.5.1
0.5.1
Sat Jan 20 19:30:00 2018
fix extra bytes detection (see PR #26)
allows ipairs(mp.packers) (see PR #27)
...
...
COPYRIGHT
View file @
d518dbaa
...
...
@@ -5,7 +5,7 @@ lua-MessagePack is licensed under the terms of the MIT/X11 license reproduced be
===============================================================================
Copyright (C) 2012-201
7
Francois Perrad.
Copyright (C) 2012-201
8
Francois Perrad.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
...
...
Makefile
View file @
d518dbaa
...
...
@@ -4,7 +4,7 @@ VERSION := $(shell cd src && $(LUA) -e "m = require [[MessagePack]]; print(m._VE
TARBALL
:=
lua-messagepack-
$(VERSION)
.tar.gz
REV
:=
1
LUAVER
:=
5.
1
LUAVER
:=
5.
2
PREFIX
:=
/usr/local
DPREFIX
:=
$(DESTDIR)$(PREFIX)
LIBDIR
:=
$(DPREFIX)
/share/lua/
$(LUAVER)
...
...
README.md
View file @
d518dbaa
...
...
@@ -25,7 +25,7 @@ and the sources are hosted at <http://github.com/fperrad/lua-MessagePack/>.
Copyright and License
---------------------
Copyright (c) 2012-201
7
Francois Perrad
Copyright (c) 2012-201
8
Francois Perrad
This library is licensed under the terms of the MIT/X11 license, like Lua itself.
docs/index.md
View file @
d518dbaa
...
...
@@ -60,7 +60,7 @@ make test
## Copyright and License
Copyright
©
2012-201
7
Fran
ç
ois Perrad
Copyright
©
2012-201
8
Fran
ç
ois Perrad
[

](http://www.openhub.net/accounts/4780?ref=Rank)
[

](http://www.linkedin.com/in/fperrad)
...
...
mkdocs.yml
View file @
d518dbaa
...
...
@@ -6,4 +6,4 @@ pages:
-
Home
:
index.md
-
API
:
messagepack.md
theme
:
mkdocs
copyright
:
Copyright © 2012-201
7
François Perrad
copyright
:
Copyright © 2012-201
8
François Perrad
msgpack.org.md
View file @
d518dbaa
...
...
@@ -38,6 +38,6 @@ Links
Copyright and License
---------------------
Copyright (c) 2012-201
7
Francois Perrad
[

](https://www.openhub.net/accounts/4780)
Copyright (c) 2012-201
8
Francois Perrad
[

](https://www.openhub.net/accounts/4780)
This library is licensed under the terms of the MIT/X11 license, like Lua itself.
src/MessagePack.lua
View file @
d518dbaa
...
...
@@ -890,9 +890,9 @@ else
end
set_array
'without_hole'
m
.
_VERSION
=
'0.5.
0
'
m
.
_VERSION
=
'0.5.
1
'
m
.
_DESCRIPTION
=
"lua-MessagePack : a pure Lua implementation"
m
.
_COPYRIGHT
=
"Copyright (c) 2012-201
7
Francois Perrad"
m
.
_COPYRIGHT
=
"Copyright (c) 2012-201
8
Francois Perrad"
return
m
--
-- This library is licensed under the terms of the MIT/X11 license,
...
...
src5.3/MessagePack.lua
View file @
d518dbaa
...
...
@@ -638,9 +638,9 @@ else
end
set_array
'without_hole'
m
.
_VERSION
=
'0.5.
0
'
m
.
_VERSION
=
'0.5.
1
'
m
.
_DESCRIPTION
=
"lua-MessagePack : a pure Lua 5.3 implementation"
m
.
_COPYRIGHT
=
"Copyright (c) 2012-201
7
Francois Perrad"
m
.
_COPYRIGHT
=
"Copyright (c) 2012-201
8
Francois Perrad"
return
m
--
-- This library is licensed under the terms of the MIT/X11 license,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment