Skip to content

Commit

Permalink
Release v0.2.0 (#58)
Browse files Browse the repository at this point in the history
* release v0.2.0
  • Loading branch information
swaldhoer authored Nov 23, 2019
1 parent f245174 commit 65665de
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 24 deletions.
17 changes: 6 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"editor.insertSpaces": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
80
79
],
"cSpell.languageSettings": [
{
Expand Down Expand Up @@ -72,7 +72,6 @@
"cSpell.ignoreWords": [
"Qspectre",
"dylib",
// software, library, commands, options etc.
"iframe",
"mathjax",
"SPDX",
Expand All @@ -90,7 +89,6 @@
"cmds",
"readline",
"rpath",
// waf, python, rst
"pyproject",
"bldnode",
"setenv",
Expand All @@ -116,13 +114,11 @@
"nopycache",
"isdir",
"literalinclude",
// project variables
"ltests",
"cflags",
"luac",
"luadll",
"hdlr",
// lua file names
"lualib",
"lapi",
"lauxlib",
Expand Down Expand Up @@ -167,7 +163,6 @@
"tpack",
"vararg",
"verybig",
// lua sources
"LOADK",
"LOADKX",
"GETTABUP",
Expand Down Expand Up @@ -236,17 +231,17 @@
"checknelems",
"narg",
"nresults",
// other
"AppVeyor",
"confpy",
"todos"
],
"cSpell.words": [
"todos",
"CCDEPS",
"CPPFLAGS",
"CPPPATH",
"LOCALAPPDATA",
"intelli",
"sigs",
"sigs"
],
"cSpell.words": [
"toolchain"
],
}
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.2.0] - 2019-11-23
********************

Added
=====
Expand Down
15 changes: 11 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ trigger:
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-latest'
vmImage: 'ubuntu-18.04'
displayName: "Linux Build"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
architecture: 'x64'

- script: lsb_release -a
displayName: Ubuntu details

- script: echo "##vso[task.prependpath]/opt/lua/bin"
displayName: Add to path

Expand All @@ -36,6 +39,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y clang-8 lld-8
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-8 100
pip install --upgrade pip -q
pip install sphinx pathlib pyyaml -q
displayName: Install dependencies
Expand Down Expand Up @@ -116,7 +120,7 @@ jobs:
- job: Windows
pool:
vmImage: 'windows-latest'
vmImage: 'windows-2019'
displayName: "Windows Build"
steps:
- task: UsePythonVersion@0
Expand All @@ -125,7 +129,9 @@ jobs:
addToPath: true
architecture: 'x64'

- script: pip install sphinx pyyaml -q
- script: |
pip install --upgrade pip -q
pip install sphinx pyyaml -q
displayName: installing dependencies
- script: python scripts\run_test.py -c msvc --simple-test
Expand All @@ -136,7 +142,7 @@ jobs:

- job: OSXBuild
pool:
vmImage: 'macOS-latest'
vmImage: 'macOS-10.14'
displayName: "MacOSX Build"
steps:
- script: echo "##vso[task.prependpath]/usr/local/opt/python/libexec/bin"
Expand Down Expand Up @@ -164,6 +170,7 @@ jobs:
gcc --version
echo | gcc -E -Wp,-v -
brew install python3
pip install --upgrade pip -q
pip install sphinx pyyaml -q
displayName: Install dependencies
Expand Down
13 changes: 7 additions & 6 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ On Unix-like systems the following files are installed:

On Windows the following files are installed:

- %LOCALAPPDATA%\Programs\lua\bin
- %LOCALAPPDATA%\\Programs\\lua\\bin

- lua.exe
- lua.exe.manifest (msvc only)
Expand All @@ -39,15 +39,16 @@ On Windows the following files are installed:
- luadll.dll
- luadll.dll.manifest (msvc only)

- %LOCALAPPDATA%\Programs\lua\include
- %LOCALAPPDATA%\\Programs\\lua\\include

- lauxlib.h
- lua.h
- lua.hpp
- luaconf.h
- lualib.h

- - %LOCALAPPDATA%\Programs\lua\lib\luadll.dll.a (gcc only)
- - %LOCALAPPDATA%\Programs\lua\lib\luadll.dll (clang, msvc only)
- - %LOCALAPPDATA%\Programs\lua\lib\luadll.dll.manifest (msvc only)
- - %LOCALAPPDATA%\Programs\lua\lib\luadll.lib (msvc only)
- %LOCALAPPDATA%\\Programs\\lua\\lib
- luadll.dll.a (gcc only)
- luadll.dll (clang, msvc only)
- luadll.dll.manifest (msvc only)
- luadll.lib (msvc only)

0 comments on commit 65665de

Please sign in to comment.