Skip to content

Commit

Permalink
3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Jul 16, 2021
1 parent 00b77e4 commit 518be53
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Lint

on:
push:
branches:
- master
branches: [master]
pull_request:

jobs:
Expand All @@ -17,10 +16,8 @@ jobs:
name: Lint code (PHP ${{ matrix.php }})

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup PHP
- uses: actions/checkout@v2
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Tests

on: [push, pull_request]
on:
push:
branches: [master]
pull_request:

jobs:
test:
Expand All @@ -23,10 +26,8 @@ jobs:
name: Tests (PHP ${{ matrix.php }} - ${{ matrix.deps }})

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup PHP
- uses: actions/checkout@v2
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Removals

## 3.6.1 (Friday, 16 July 2021)
### Fixed
- Use correct asset path (fixes #274)([00b77e4b144e13b579e5ad820ab79a1b42eac756](https://github.com/knuckleswtf/scribe/commit/00b77e4b144e13b579e5ad820ab79a1b42eac756),

## 3.6.0 (Tuesday, 13 July 2021)
### Fixed
- Sort group filenames numerically (fixes #273)([c77fed23f04ab1f13bb06bf5b099227ced46dbdc](https://github.com/knuckleswtf/scribe/commit/c77fed23f04ab1f13bb06bf5b099227ced46dbdc),
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/Globals.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Globals
{
public const SCRIBE_VERSION = '3.6.0';
public const SCRIBE_VERSION = '3.6.1';

public static bool $shouldBeVerbose = false;
}

0 comments on commit 518be53

Please sign in to comment.