Skip to content

Commit

Permalink
Merge pull request #40 from jecisc/development
Browse files Browse the repository at this point in the history
v1.2.1
  • Loading branch information
jecisc authored Jan 29, 2022
2 parents 507d7ed + 091dcbf commit 1079a27
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 13 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the development branch
on:
push:
branches:
- '**'
pull_request:
types: [assigned, opened, synchronize, reopened]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
smalltalk: [ Pharo64-6.1, Pharo64-7.0, Pharo64-8.0, Pharo64-9.0 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15

10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
<!--
git log --pretty="* %s ([%h](https://github.com/jecisc/TinyLogger/commit/%H))" v1.2.0...HEAD --grep="Merge pull"
git log --pretty="* %s ([%h](https://github.com/jecisc/TinyLogger/commit/%H))" v1.2.1...HEAD --grep="Merge pull"
('Content' copyWithRegex: 'Merge pull request #[0-9]+ from [^/]+/[0-9]*' matchesReplacedWith: '') copyReplaceAll: '-' with: ' '
-->

# [v1.2.1](https://github.com/jecisc/TinyLogger/compare/v1.2.0...v1.2.1) (2022-01-29)

* Migrate CI to Github actions + support Pharo 9 ([c49255e](https://github.com/jecisc/TinyLogger/commit/c49255ebd6aa325ca335fe17fdd1041ff51b4f3a))

# [v1.2.0](https://github.com/jecisc/TinyLogger/compare/v1.1.5...v1.2.0) (2021-10-11)

* #execute:recordedAs: should return the result of its block ([16eaa82](https://github.com/jecisc/TinyLogger/commit/16eaa82e22e803ca4226150dc047c5ff61bf5434))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ Thus, it should be safe to depend on a fixed major version and moving minor vers

## Smalltalk versions compatibility

| Version | Compatible Pharo versions |
| Version | Compatible Pharo versions |
|------------- |--------------------------- |
| 1.x.x | Pharo 61, 70, 80 |
| 1.x.x | Pharo 61, 70, 80, 90 |

## Contact

Expand Down

0 comments on commit 1079a27

Please sign in to comment.