Skip to content

Commit

Permalink
prepare release 0.4.0 (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
swaldhoer authored Mar 6, 2020
1 parent 28ed4fc commit 6ff5af8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_ v1.0.0, and this project adheres to
`Semantic Versioning`_ v2.0.0.

************
[Unreleased]
************
********************
[0.4.0] - 2020-03-05
********************

Added
=====
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ project:
.. code-block:: bash
$ build/gcc/lua -v
Lua 5.3.5 Copyright (C) 1994-2017 Lua.org, PUC-Rio [based on native Lua (0.4.0-devel), https://github.com/swaldhoer/native-lua]
Lua 5.3.5 Copyright (C) 1994-2017 Lua.org, PUC-Rio [based on native Lua (0.4.0), https://github.com/swaldhoer/native-lua]
``tests`` Directory
===================
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
native Lua: "0.4.0-devel"
native Lua: "0.4.0"
lua: "5.3.5"
tests: "5.3.4"
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setup(app):
copyright = "2018-2020, Stefan Waldhör" # pylint: disable=redefined-builtin
author = "Stefan Waldhör"

version = "0.4.0-devel"
version = "0.4.0"
release = version

language = "en"
Expand Down
2 changes: 1 addition & 1 deletion doxygen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "native Lua"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "0.4.0-devel"
PROJECT_NUMBER = "0.4.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ from waflib.Build import BuildContext, CleanContext, ListContext, StepContext
from waflib.Build import InstallContext, UninstallContext


VERSION = "0.4.0-devel"
VERSION = "0.4.0"
APPNAME = "lua"
top = "." # pylint: disable=invalid-name
out = "build" # pylint: disable=invalid-name
Expand Down Expand Up @@ -521,7 +521,7 @@ def configure(cnf): # pylint: disable=too-many-branches
set_new_basic_env("clang")
cnf.load("compiler_c")
cnf.env.CFLAGS = [cnf.env.c_standard, "-O2", "-Wall", "-Wextra"]
cnf.env.LINKFLAGS = ["-Wl,-export-dynamic"]
cnf.env.LINKFLAGS = ["-Wl,--export-all-symbols"]
cnf.check_cc(fragment=min_c, execute=True)
check_libs("m")
platform_compilers.append(cnf.env.env_name)
Expand Down

0 comments on commit 6ff5af8

Please sign in to comment.