Is Ruby 4.1 Released?
Days until Ruby 4.1 is officially released
Ruby ships a major release every Christmas, Ruby 4.0 came out on 25th December 2025, the latest version is Ruby 4.0.7
Meet Ruby 4.1
- Per-Ractor garbage collection
- Bump pointer allocator for the default GC
- Module#descendants and Integer#bit_count
- String#tr accepts a Hash, new Range#clamp
- All Regexp instances are frozen
- Kernel#autoload_relative and Proc#refined
Version
You can check the version of Ruby you are using by running the following command in your terminal:ruby -vThis will output the version of Ruby you are using.
About Ruby
Ruby is a dynamically typed programming language, that uses garbage collection and just-in-time compilation.Ruby was released for the first time in 1995, where it was created by a single man Yukihiro Matsumoto, after no less than 2 years of developing it. Ruby is a multi-paradigm language, but the main focus is object-oriented programming, where even the classes (bool, str, etc.) are objects in their own right. Nevertheless, Ruby also allows very useful, functional programming characteristics, which makes it flexible for users of different backgrounds to develop and do their work in this particular language. Learning more about Ruby will help us understand its popularity, which is not as enormous and widespread as Python, but it is still something that many programmers recur to when finding languages to develop their ideas in.