Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib${LIB_SUFFIX}")
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin${LIB_SUFFIX}")
SET(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin${LIB_SUFFIX}")

SET (LIB_LUA_VER "54" CACHE STRING "Suffix of version (for library name) e.g lua54")
SET (LIB_LUA_VER "55" CACHE STRING "Suffix of version (for library name) e.g lua55")

#
# Include dir COPY
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ TO_LIB= liblua.a
TO_MAN= lua.1 luac.1

# Lua version and release.
V= 5.4
R= $V.8
V= 5.5
R= $V.0

# Targets start here.
all: $(PLAT)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This is Lua 5.4.8, released on 21 May 2025.
This is Lua 5.5.0, released on 22 Dec 2025.

[![Build Status](https://dev.azure.com/codefoco/NuGets/_apis/build/status/lua?branchName=main)](https://dev.azure.com/codefoco/NuGets/_build/latest?definitionId=66&branchName=main)

Expand Down
2 changes: 1 addition & 1 deletion android_build/jni/Android.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES += ../include
LOCAL_MODULE := lua54
LOCAL_MODULE := lua55
LOCAL_LDFLAGS += "-Wl,-z,max-page-size=16384"
LOCAL_CFLAGS := -DLUA_USE_POSIX -DLUA_USE_C89 -DLUA_USE_LONGLONG -I../include
LOCAL_SRC_FILES := \
Expand Down
2 changes: 1 addition & 1 deletion android_build/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_MODULES := lua54
APP_MODULES := lua55
APP_PLATFORM := android-16
APP_OPTIM := release
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
Expand Down
135 changes: 86 additions & 49 deletions doc/contents.html

Large diffs are not rendered by default.

File renamed without changes
Loading