Skip to content

Releases: fboender/sla

v1.7.1

Choose a tag to compare

@fboender fboender released this 02 Oct 07:11

Forgot to push version bump commit before releasing on github, causing release v1.7 to have v1.6 as its version in sla --version. Fixed in this version.

v1.7

Choose a tag to compare

@fboender fboender released this 02 Oct 06:24

Support for build rule names containing '-'

v1.6

Choose a tag to compare

@fboender fboender released this 12 Sep 09:15

This release fixes a bug in the detection of dangerous permissions.

v1.5

Choose a tag to compare

@fboender fboender released this 23 Sep 06:36

v1.5 fixes a bug in the detection of dangerous permissions.

v1.4

Choose a tag to compare

@fboender fboender released this 23 Sep 06:17

Sla now detects unsafe ownership and permissions on build.sla files and aborts.

v1.3

Choose a tag to compare

@fboender fboender released this 25 Mar 10:53

Version 1.3 of Sla changes the license from GPL to MIT.

1.2

1.2

Choose a tag to compare

@fboender fboender released this 28 Sep 05:34

Release v1.2 fixes a backwards incompatible change introduced in v1.1. The indention of the rules was increased by one, but this breaks tab-completion.

v1.1

Choose a tag to compare

@fboender fboender released this 26 Sep 07:42

This release adds the ability to have long descriptions for build rules. For example:

install () {
    # Install sla
    # Install sla to $PREFIX (/usr/local by default).
    #
    # You can specify the prefix with an environment variable:
    # 
    #     $ PREFIX=/usr sla install

    # Set the prefix
    PREFIX=${PREFIX:-/usr/local}
    DEST="$PREFIX/bin/sla"
    env install -m 755 ./sla "$DEST"
    echo "sla installed in $DEST"
}

This documentation can then be access using sla <rule> --help. E.g.:

$ sla install --help
install: Install sla
    
     Install sla to $PREFIX (/usr/local by default).
    
     You can specify the prefix with an environment variable:
     
         $ PREFIX=/usr sla install

v1.0

Choose a tag to compare

@fboender fboender released this 02 Jan 09:36
Bump version to v1.0