Skip to content

Commit e62d773

Browse files
authored
Merge pull request #310 from maxonfjvipon/update-eo-to-0.55.0
update EO to 0.55.0
2 parents aa2ea90 + 6a3c590 commit e62d773

File tree

111 files changed

+146
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+146
-130
lines changed

.github/workflows/releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
with:
1919
ruby-version: 3.3
2020
bundler-cache: true
21-
- run: sudo gem install pdd -v 0.24.0
2221
- run: |
2322
sudo apt-get update --yes --fix-missing
24-
sudo apt-get install --yes python3 python3-pip
23+
sudo apt-get install --yes libmagic-dev python3 python3-pip
2524
pip3 install requests
25+
- run: sudo gem install pdd -v 0.24.0
2626
- run: |
2727
python3 py/auto_pull.py
2828
- uses: crazy-max/ghaction-import-gpg@v6

make/jvm/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>jvm</artifactId>
1010
<version>1.0-SNAPSHOT</version>
1111
<properties>
12-
<eo.version>0.54.1</eo.version>
12+
<eo.version>0.55.0</eo.version>
1313
<stack-size>32M</stack-size>
1414
<heap-size>2G</heap-size>
1515
</properties>
@@ -21,6 +21,9 @@
2121
<configuration>
2222
<source>11</source>
2323
<target>11</target>
24+
<compilerArgs>
25+
<arg>-Xpkginfo:always</arg>
26+
</compilerArgs>
2427
</configuration>
2528
</plugin>
2629
<plugin>

objects/org/eolang/bytes.eo

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
+architect yegor256@gmail.com
33
+home https://github.com/objectionary/eo
44
+package org.eolang
5-
+rt jvm org.eolang:eo-runtime:0.53.0
5+
+rt jvm org.eolang:eo-runtime:0.55.0
66
+rt node eo2js-runtime:0.0.0
7-
+version 0.53.0
7+
+version 0.55.0
88
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
99
+spdx SPDX-License-Identifier: MIT
1010
+unlint rt-without-atoms
1111
+unlint empty-object
12+
+unlint wrong-sprintf-arguments
1213

1314
# The object encapsulates a chain of bytes, adding a few
1415
# convenient operations to it. Objects like `int`, `string`,

objects/org/eolang/cti.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
+architect yegor256@gmail.com
22
+home https://github.com/objectionary/eo
33
+package org.eolang
4-
+version 0.53.0
4+
+version 0.55.0
55
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
66
+spdx SPDX-License-Identifier: MIT
77

objects/org/eolang/dataized.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
+architect yegor256@gmail.com
22
+home https://github.com/objectionary/eo
33
+package org.eolang
4-
+version 0.53.0
4+
+version 0.55.0
55
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
66
+spdx SPDX-License-Identifier: MIT
77

objects/org/eolang/error.eo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
+architect yegor256@gmail.com
22
+home https://github.com/objectionary/eo
33
+package org.eolang
4-
+rt jvm org.eolang:eo-runtime:0.53.0
4+
+rt jvm org.eolang:eo-runtime:0.55.0
55
+rt node eo2js-runtime:0.0.0
6-
+version 0.53.0
6+
+version 0.55.0
77
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
88
+spdx SPDX-License-Identifier: MIT
99
+unlint unit-test-missing

objects/org/eolang/false.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
+architect yegor256@gmail.com
22
+home https://github.com/objectionary/eo
33
+package org.eolang
4-
+version 0.53.0
4+
+version 0.55.0
55
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
66
+spdx SPDX-License-Identifier: MIT
77
+unlint unit-test-missing

objects/org/eolang/fs/dir.eo

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
+architect yegor256@gmail.com
33
+home https://github.com/objectionary/eo
44
+package org.eolang.fs
5-
+rt jvm org.eolang:eo-runtime:0.53.0
5+
+rt jvm org.eolang:eo-runtime:0.55.0
66
+rt node eo2js-runtime:0.0.0
7-
+version 0.53.0
7+
+version 0.55.0
88
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
99
+spdx SPDX-License-Identifier: MIT
1010
+unlint rt-without-atoms
1111
+unlint empty-object
12+
+unlint wrong-sprintf-arguments
1213

1314
# Directory in the file system.
1415
# Apparently every directory is a file.

objects/org/eolang/fs/file.eo

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
+architect yegor256@gmail.com
33
+home https://github.com/objectionary/eo
44
+package org.eolang.fs
5-
+rt jvm org.eolang:eo-runtime:0.53.0
5+
+rt jvm org.eolang:eo-runtime:0.55.0
66
+rt node eo2js-runtime:0.0.0
7-
+version 0.53.0
7+
+version 0.55.0
88
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
99
+spdx SPDX-License-Identifier: MIT
1010
+unlint rt-without-atoms
1111
+unlint empty-object
12+
+unlint wrong-sprintf-arguments
1213

1314
# The file object in the filesystem.
1415
[path] > file

objects/org/eolang/fs/path.eo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
+architect yegor256@gmail.com
88
+home https://github.com/objectionary/eo
99
+package org.eolang.fs
10-
+version 0.53.0
10+
+version 0.55.0
1111
+spdx SPDX-FileCopyrightText Copyright (c) 2016-2025 Objectionary.com
1212
+spdx SPDX-License-Identifier: MIT
1313

0 commit comments

Comments
 (0)