X Tutup
Skip to content

Commit c75170b

Browse files
author
Johan Brichau
committed
Use the Zn-based utf8 codec in Pharo by default
1 parent b06d7ff commit c75170b

File tree

2 files changed

+2
-2
lines changed
  • repository

2 files changed

+2
-2
lines changed

repository/Grease-Core.package/GRPlatform.class/instance/version.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ version info
22
version
33
"Answer the Grease version"
44

5-
^ (GRVersion major: 1 minor: 7 revision: 5)
5+
^ (GRVersion major: 1 minor: 8 revision: 0)
66
yourself

repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ utf8 codec
22
utf8CodecClass
33

44
^ utf8DeprecatedCodecFlag
5-
ifNil: [ GRPharoDeprecatedUtf8Codec ]
5+
ifNil: [ GRPharoUtf8Codec ]
66
ifNotNil: [ utf8DeprecatedCodecFlag
77
ifTrue:[ GRPharoDeprecatedUtf8Codec ]
88
ifFalse: [ GRPharoUtf8Codec ] ]

0 commit comments

Comments
 (0)
X Tutup