Skip to content

Commit

Permalink
release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
q66 committed Nov 1, 2022
1 parent a758d56 commit 9b0eca5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1 November 2022 - 0.2.2

**Changes:**

- Passing unions by value is now permitted on specific platforms:
- Windows (x86 and x86_64), MIPS32/64, all 32-bit ARM, PowerPC
- Initializer fixes in `ffi.new`
- Fixed unary metamethods on newer versions of Lua
- Expanded architecture identifier coverage
- CI updates
- Various fixes and cleanups

# 31 January 2021 - 0.2.1

**Changes:**
Expand Down
4 changes: 2 additions & 2 deletions cffi-lua-0.2.1-1.rockspec → cffi-lua-0.2.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "cffi-lua"
version = "0.2.1-1"
version = "0.2.2-1"
source = {
url = "git+https://github.com/q66/cffi-lua",
tag = "v0.2.1"
tag = "v0.2.2"
}
description = {
summary = "A portable C FFI for Lua 5.1+",
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Project definition

project('cffi-lua', ['cpp'],
version: '0.2.1',
version: '0.2.2',
default_options: [
'buildtype=debugoptimized', 'b_ndebug=if-release', 'cpp_std=c++14',
'warning_level=3', 'cpp_rtti=false', 'cpp_eh=none'
Expand Down

0 comments on commit 9b0eca5

Please sign in to comment.