Skip to content

Commit 1079a27

Browse files
authored
Merge pull request #40 from jecisc/development
v1.2.1
2 parents 507d7ed + 091dcbf commit 1079a27

File tree

4 files changed

+37
-13
lines changed

4 files changed

+37
-13
lines changed

.github/workflows/continuous.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
env:
4+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5+
6+
# Controls when the action will run. Triggers the workflow on push or pull request
7+
# events but only for the development branch
8+
on:
9+
push:
10+
branches:
11+
- '**'
12+
pull_request:
13+
types: [assigned, opened, synchronize, reopened]
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
smalltalk: [ Pharo64-6.1, Pharo64-7.0, Pharo64-8.0, Pharo64-9.0 ]
21+
name: ${{ matrix.smalltalk }}
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: hpi-swa/setup-smalltalkCI@v1
25+
with:
26+
smalltalk-version: ${{ matrix.smalltalk }}
27+
- run: smalltalkci -s ${{ matrix.smalltalk }}
28+
shell: bash
29+
timeout-minutes: 15
30+

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

CHANGELOG.md

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

6+
# [v1.2.1](https://github.com/jecisc/TinyLogger/compare/v1.2.0...v1.2.1) (2022-01-29)
7+
8+
* Migrate CI to Github actions + support Pharo 9 ([c49255e](https://github.com/jecisc/TinyLogger/commit/c49255ebd6aa325ca335fe17fdd1041ff51b4f3a))
9+
610
# [v1.2.0](https://github.com/jecisc/TinyLogger/compare/v1.1.5...v1.2.0) (2021-10-11)
711

812
* #execute:recordedAs: should return the result of its block ([16eaa82](https://github.com/jecisc/TinyLogger/commit/16eaa82e22e803ca4226150dc047c5ff61bf5434))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Thus, it should be safe to depend on a fixed major version and moving minor vers
8383

8484
## Smalltalk versions compatibility
8585

86-
| Version | Compatible Pharo versions |
86+
| Version | Compatible Pharo versions |
8787
|------------- |--------------------------- |
88-
| 1.x.x | Pharo 61, 70, 80 |
88+
| 1.x.x | Pharo 61, 70, 80, 90 |
8989

9090
## Contact
9191

0 commit comments

Comments
 (0)