Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
smalltalk: [ Pharo64-7.0, Pharo64-8.0, Pharo64-9.0, Pharo64-10, Pharo64-11 ]
smalltalk: [ Pharo64-8.0, Pharo64-9.0, Pharo64-10, Pharo64-11, Pharo64-12 ]
name: ${{ matrix.smalltalk }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
Expand Down
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,21 @@

[![CI](https://github.com/jecisc/Chanel/actions/workflows/continuous.yml/badge.svg)](https://github.com/jecisc/Chanel/actions/workflows/continuous.yml)
[![Coverage Status](https://coveralls.io/repos/github/jecisc/Chanel/badge.svg?branch=master)](https://coveralls.io/github/jecisc/Chanel?branch=master)
[![Pharo version](https://img.shields.io/badge/Pharo-7.0-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-8.0-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-9.0-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-10-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-11-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-12-%23aac9ff.svg)](https://pharo.org/download)

Chanel is a code cleaner for Pharo.

- [Installation](#installation)
- [Quick start](#quick-start)
- [Documentation](#documentation)
- [Version management](#version-management)
- [Smalltalk versions compatibility](#smalltalk-versions-compatibility)
- [Contact](#contact)
- [Chanel ](#chanel-)
- [Installation](#installation)
- [Quick start](#quick-start)
- [Documentation](#documentation)
- [Version management](#version-management)
- [Smalltalk versions compatibility](#smalltalk-versions-compatibility)
- [Contact](#contact)

## Installation

Expand Down Expand Up @@ -92,7 +93,8 @@ Thus, it should be safe to depend on a fixed major version and moving minor vers
| Version | Compatible Pharo versions |
|------------- |--------------------------- |
| 1.x.x | Pharo 70, 80, 90, 10, 11 |
| 2.x.x | Pharo 80, 90, 10, 11, 12 |

## Contact

If you have any questions or problems do not hesitate to open an issue or contact cyril (a) ferlicot.me
If you have any questions or problems do not hesitate to open an issue or contact cyril (a) ferlicot.fr
27 changes: 13 additions & 14 deletions src/BaselineOfChanel/BaselineOfChanel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
I am a baseline to define the structure and dependencies of the Chanel project.
"
Class {
#name : #BaselineOfChanel,
#superclass : #BaselineOf,
#category : #BaselineOfChanel
#name : 'BaselineOfChanel',
#superclass : 'BaselineOf',
#category : 'BaselineOfChanel',
#package : 'BaselineOfChanel'
}

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfChanel >> baseline: spec [

<baseline>
Expand All @@ -34,24 +35,22 @@ BaselineOfChanel >> baseline: spec [
group: 'Core' with: #( 'Chanel-Pharo11Plus' );
group: 'Tests' with: #( 'Chanel-Pharo11Plus-Tests' ) ].

spec for: #( #'pharo7.x' ) do: [ spec package: 'Chanel-Pharo7' ].

spec for: #( #'pharo7.x' #'pharo8.x' ) do: [
spec for: #'pharo8.x' do: [
spec
package: 'Chanel-Pharo8';
package: 'Chanel' with: [ spec requires: #( 'Chanel-Pharo8' ) ] ].

spec for: #( #'pharo7.x' #'pharo8.x' #'pharo9.x' ) do: [
spec for: #( #'pharo8.x' #'pharo9.x' ) do: [
spec
package: 'Chanel-Pharo9';
package: 'Chanel' with: [ spec requires: #( 'Chanel-Pharo9' ) ] ].

spec for: #( #'pharo7.x' #'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' ) do: [
spec for: #( #'pharo8.x' #'pharo9.x' #'pharo10.x' #'pharo11.x' ) do: [
self pharoBackwardCompatibility: spec.
spec package: 'Chanel' with: [ spec requires: #( 'PharoBackwardCompatibility')] ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfChanel >> iterators: spec [
spec
baseline: 'Iterators'
Expand All @@ -60,24 +59,24 @@ BaselineOfChanel >> iterators: spec [
repository: 'github://juliendelplanque/Iterators:v1.x.x/src' ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfChanel >> pharoBackwardCompatibility: spec [
spec
baseline: 'PharoBackwardCompatibility'
with: [ spec repository: 'github://jecisc/PharoBackwardCompatibility:v1.x.x/src' ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfChanel >> pharoVersionsFrom: aVersion [
^ (aVersion to: SystemVersion current major) collect: [ :v | ('pharo' , v asString , '.x') asSymbol ]
]

{ #category : #accessing }
{ #category : 'accessing' }
BaselineOfChanel >> projectClass [
^ MetacelloCypressBaselineProject
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfChanel >> tinyLogger: spec [
spec
baseline: 'TinyLogger'
Expand Down
2 changes: 1 addition & 1 deletion src/BaselineOfChanel/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfChanel }
Package { #name : 'BaselineOfChanel' }
Loading