eolang 0.35.0 → 0.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -20,14 +20,14 @@ First, you install [npm][npm-install] and [Java SE][java-se].
20
20
  Then, you install [eolang][npm] package, using [npm][npm-install]:
21
21
 
22
22
  ```bash
23
- npm install -g eolang@0.34.1
23
+ npm install -g eolang@0.35.0
24
24
  ```
25
25
 
26
26
  You can also use [Homebrew] (on macOS):
27
27
 
28
28
  ```bash
29
29
  brew tap objectionary/eoc https://github.com/objectionary/eoc
30
- brew install objectionary/eoc/eolang@0.34.1
30
+ brew install objectionary/eoc/eolang@0.35.0
31
31
  ```
32
32
 
33
33
  Or install it via [Nix flakes](https://nixos.wiki/wiki/Flakes):
package/eo-version.txt CHANGED
@@ -1 +1 @@
1
- 0.59.9
1
+ 0.61.0
package/package.json CHANGED
@@ -74,5 +74,5 @@
74
74
  "postinstall": "node scripts/postinstall.js",
75
75
  "test": "mocha 'test/**/*.js' --timeout 1200000"
76
76
  },
77
- "version": "0.35.0"
77
+ "version": "0.35.1"
78
78
  }
@@ -15,7 +15,7 @@ const semver = require('semver');
15
15
  * @return {Promise} of assemble task
16
16
  */
17
17
  module.exports = function(opts) {
18
- const extra = extraFlags(opts);
18
+ const extra = extras(opts);
19
19
  return elapsed(async (tracked) => {
20
20
  if (goals(opts)[0] === 'eo:lint') {
21
21
  try {
package/src/version.js CHANGED
@@ -6,6 +6,6 @@
6
6
  // The values here are replaced automatically by the .rultor.yml script,
7
7
  // at the "release" pipeline:
8
8
  module.exports = {
9
- what: '0.35.0',
10
- when: '2026-04-20'
9
+ what: '0.35.1',
10
+ when: '2026-04-23'
11
11
  };