Skip to content

Commit 53df36a

Browse files
Update Bloc repository (and add Album) in the baseline
1 parent 2935686 commit 53df36a

4 files changed

Lines changed: 17 additions & 7 deletions

File tree

.smalltalkci.default.ston

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ SmalltalkCISpec {
55
#directory : 'src',
66
#onConflict : #useLoaded,
77
#platforms : [ #pharo ]
8+
#onConflict : #useIncoming,
9+
#onUpgrade : #useLoaded,
10+
#ignoreImage : true
811
}
9-
]
12+
],
13+
14+
#testing : {
15+
#failOnZeroTests : false,
16+
#packages : [ 'Toplo-Serialization.*.Tests' ]
17+
}
1018
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 OpenSmock
3+
Copyright (c) 2023-2026 OpenSmock
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ Metacello new
2323

2424
## Dependencies
2525

26-
- [Toplo](https://github.com/plantec/Toplo)
2726
- [Bloc-Serialization](https://github.dev/OpenSmock/Bloc-Serialization)
27+
- [Album](https://github.com/pharo-graphics/Album)
28+
- [Toplo](https://github.com/pharo-graphics/Toplo)
2829

2930
## License
3031

31-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
32+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

src/BaselineOfToploSerialization/BaselineOfToploSerialization.class.st

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ BaselineOfToploSerialization >> dependency: spec [
3333
baseline: #BlocSerialization
3434
with: [
3535
spec repository: 'github://OpenSmock/Bloc-Serialization:main/src' ].
36-
36+
37+
"Graphic librairies: this section should be removed when librairies will be integrated in Pharo"
3738
spec
3839
baseline: 'Album'
39-
with: [ spec repository: 'github://OpenSmock/Album:master' ].
40+
with: [ spec repository: 'github://ThalesGroup/Album:dev' ].
4041

4142
spec
4243
baseline: 'Toplo'
43-
with: [ spec repository: 'github://OpenSmock/Toplo:dev/src' ]
44+
with: [ spec repository: 'github://ThalesGroup/Toplo:dev' ]
4445
]

0 commit comments

Comments
 (0)