Skip to content

v1.1.0

Latest
Compare
Choose a tag to compare
@matsubo matsubo released this 24 Jun 09:50

Dockerfile Changes

  • Upgraded Ruby version from 3.1 to 3.3

Gemfile Changes

  • Removed specific version constraints for matrix and gnuplot-multiplot
  • Updated dependency versions to latest (as seen in Gemfile.lock changes)

README Updates

  • Added an English version of the README (README.en.md)
  • Updated docker-compose commands to docker compose
  • Added explanation on how to fix the seed value
    • Now possible to control randomness using the SEED environment variable

docker-compose.yml Changes

  • Removed version specification
  • Removed volume mount

main.rb Changes

  • Modified the method of setting the random seed
    • Changed from ENV.fetch('seed', ...) to ENV.fetch('SEED', ...)
    • Converting the value fetched from environment variable to integer

These changes modernize the project's dependencies, align Docker-related configurations with current best practices, and improve the reproducibility of the simulation.

Full Changelog: v1.0.0...v1.1.0