Racket full changelog
Racket 9.0
released Nov 24, 2025 (New Release)
Racket supports parallel threads.
Parallel threads can be created using the #:pool argument to thread creation.
Threads created with #:keep set to 'results will record their results for later retrieval with thread-wait.
The black-box wrapper prevents the optimizing compiler from optimizing away certain computations entirely. This can be helpful in ensuring that benchmarks are accurate.
The decompile-linklet function can map linklets back to s-expressions.
When using BC Racket, the processor-count function is changed to always return the parallel count.
We now distribute “natipkg” packages for AArch64, useful for package-build and package-testing infrastructure.
Check Syntax tracks identifiers more deeply nested in the “origin” field of syntax objects.
The math library includes Weibull distributions.
There are many other repairs and documentation improvements!
Parallel threads can be created using the #:pool argument to thread creation.
Threads created with #:keep set to 'results will record their results for later retrieval with thread-wait.
The black-box wrapper prevents the optimizing compiler from optimizing away certain computations entirely. This can be helpful in ensuring that benchmarks are accurate.
The decompile-linklet function can map linklets back to s-expressions.
When using BC Racket, the processor-count function is changed to always return the parallel count.
We now distribute “natipkg” packages for AArch64, useful for package-build and package-testing infrastructure.
Check Syntax tracks identifiers more deeply nested in the “origin” field of syntax objects.
The math library includes Weibull distributions.
There are many other repairs and documentation improvements!
Racket 8.16
released Mar 3, 2025 (New Release)
As of this release:
Racket has expanded support for immutable and mutable treelists:
A variety of new treelist utility functions are available: treelist-filter, treelist-flatten, et cetera.
The mutable-treelist-prepend! function allows prepending to mutable treelists.
Mutable treelists are serializable.
The serialize-structs module allows the minimization of dependencies by providing only a handful of core forms.
The flbit-field function allows access to the binary representation of IEEE floating-point numbers.
The top-left search box in the documentation works once more.
The XML reader is 2–3x faster on inputs with long CDATA and comments, and avoids some internal contract checks to obtain a 25% speedup on large documents generally.
The pregexp syntax includes "X" to match a grapheme cluster, following Perl and PCRE.
The read-json* and write-json* functions allow customization of the Racket representation of JSON elements, eliminating the need for a separate “translation” pass.
Racket has new port I/O functions:
The open-input-nowhere function creates an empty input port.
The pipe-port? function makes it possible to determine whether a port is created by make-pipe.
The port-file-stat function allows gathering information about the file that is the source or target of a file-stream port.
A revised representation of pointers improves the performance of foreign function calls. As a result, ptr-ref and ptr-set! are substantially faster.
In anticipation of the fifteenth RacketCon, the fifteenth function returns the fifteenth element of a list.
Racket has an improved multi-line convention for error messages.
The db library allows prepare on virtual statements.
The student-t distribution is part of the math/distributions library.
Expeditor supports customizing the prompt, using the #:prompt keyword argument to call-with-expeditor.
There is a guide to adding internationalization for a new (human) language.
Optimizations to racket/profile improve asymptotic
Racket has expanded support for immutable and mutable treelists:
A variety of new treelist utility functions are available: treelist-filter, treelist-flatten, et cetera.
The mutable-treelist-prepend! function allows prepending to mutable treelists.
Mutable treelists are serializable.
The serialize-structs module allows the minimization of dependencies by providing only a handful of core forms.
The flbit-field function allows access to the binary representation of IEEE floating-point numbers.
The top-left search box in the documentation works once more.
The XML reader is 2–3x faster on inputs with long CDATA and comments, and avoids some internal contract checks to obtain a 25% speedup on large documents generally.
The pregexp syntax includes "X" to match a grapheme cluster, following Perl and PCRE.
The read-json* and write-json* functions allow customization of the Racket representation of JSON elements, eliminating the need for a separate “translation” pass.
Racket has new port I/O functions:
The open-input-nowhere function creates an empty input port.
The pipe-port? function makes it possible to determine whether a port is created by make-pipe.
The port-file-stat function allows gathering information about the file that is the source or target of a file-stream port.
A revised representation of pointers improves the performance of foreign function calls. As a result, ptr-ref and ptr-set! are substantially faster.
In anticipation of the fifteenth RacketCon, the fifteenth function returns the fifteenth element of a list.
Racket has an improved multi-line convention for error messages.
The db library allows prepare on virtual statements.
The student-t distribution is part of the math/distributions library.
Expeditor supports customizing the prompt, using the #:prompt keyword argument to call-with-expeditor.
There is a guide to adding internationalization for a new (human) language.
Optimizations to racket/profile improve asymptotic
Racket 8.15
released Nov 4, 2024 (New Release)
Sort and highlight documentation-search results by core documentation and main-distribution packages
Add "language family" to documents, support filtering searches by language family, and highlight results that are not the main family
Add `'ios` as a compilation target distinct from `'macos`
Use `AI_V4MAPPED` and `AI_ADDRCONFIG` for hostname resolution via`getaddrinfo which improves IPv4 vs. IPv6 on some platforms
raco pkg: Add `uninstall` command prefer it to `remove`
raco pkg: Improve `--clone` transition for packages that are included in a distribution, and improve `--unclone` propagation to implied
ffi/unsafe: Add `'zeroed-atomic[-interior]` allocation mode
compiler/demod: Repair for Windows paths and some syntax scopes
Add "language family" to documents, support filtering searches by language family, and highlight results that are not the main family
Add `'ios` as a compilation target distinct from `'macos`
Use `AI_V4MAPPED` and `AI_ADDRCONFIG` for hostname resolution via`getaddrinfo which improves IPv4 vs. IPv6 on some platforms
raco pkg: Add `uninstall` command prefer it to `remove`
raco pkg: Improve `--clone` transition for packages that are included in a distribution, and improve `--unclone` propagation to implied
ffi/unsafe: Add `'zeroed-atomic[-interior]` allocation mode
compiler/demod: Repair for Windows paths and some syntax scopes
Racket 8.14
released Aug 14, 2024 (New Release)
The racket/treelist and racket/mutable-treelist libraries provide list-like containers that support many operations in effectively constant time, including appending and extracting sub-lists without mutating the given list. Treelists are implemented as RRB Vectors, invented by Stucki, Riompf, Ureche, and Bagwell. (see 4.16 Treelists and RRB vector: a practical general purpose immutable sequence, ICFP 2015)
The hash-filter-keys and hash-filter-values functions allow users to filter hashes using a predicate on either keys or values. (see 4.15 Hash Tables: hash-filter-keys, hash-filter-values)
The vector-extend and vector*-extend functions provide a way to pre-populate the prefix of a newly allocated vector using the elements of an existing vector. (see 4.12 Vectors: vector-extend)
Command-line raco setup, package update, and package installation use terminal control (when available) to show what they are working on more compactly and with a progress bar.
Racket v8.13 uses Unicode 15.1 for character and string operations.
Machine-specific cross-module optimization allows improved support for static generation of foreign-function bindings.
The scribble/acmart language uses v2.01, which avoids errors concerning the hyperref package in some latex installations.
The hash-filter-keys and hash-filter-values functions allow users to filter hashes using a predicate on either keys or values. (see 4.15 Hash Tables: hash-filter-keys, hash-filter-values)
The vector-extend and vector*-extend functions provide a way to pre-populate the prefix of a newly allocated vector using the elements of an existing vector. (see 4.12 Vectors: vector-extend)
Command-line raco setup, package update, and package installation use terminal control (when available) to show what they are working on more compactly and with a progress bar.
Racket v8.13 uses Unicode 15.1 for character and string operations.
Machine-specific cross-module optimization allows improved support for static generation of foreign-function bindings.
The scribble/acmart language uses v2.01, which avoids errors concerning the hyperref package in some latex installations.
Racket 8.13
released May 16, 2024 (New Release)
Racket 8.12
released Feb 8, 2024 (New Release)
Racket 8.11
released Nov 14, 2023 (New Release)
Racket 8.10
released Aug 16, 2023 (New Release)
Racket 8.9
released May 11, 2023 (New Release)
Racket 8.8
released Feb 8, 2023 (New Release)
Racket for Windows 7 - free download notice
Windows 7 Download periodically updates software information of Racket from the publisher.
« BACK
My Account
Help
Windows 7 Software Coupons
-
FREE VPN PROXY by SEED4.ME WINDOWS
Free VPN by Seed4Me -
Media Player Morpher
85% Off -
MacX DVD Ripper Pro
50% Off -
MacX DVD Video Converter
58% Off -
WinX MediaTrans
63% Off
My Saved Stuff
You have not saved any software.
Click "Save" next to each software.
Click "Save" next to each software.
Would you like to receive announcements of new versions of your software by email or by RSS reader? Register for FREE!
Windows 7 Downloads Picks
- Software Ideas Modeler Portable 15.16
- Software Ideas Modeler Portable x64 14.55
- QuickRev 1.10.2
- Portable RJ TextEd 4.18
- ExamDiff Pro 16.0.1.15
- Microsoft Visual Studio 2022 17.10.3
- Windows Phone Developer Tools 1.0.1
- Adobe AIR SDK for Linux 51.2.2.5
- Qt Creator 18.0.0
- NCache Enterprise Edition x64 4.4
- Open Validator 2.5.2
- Geany Portable 2.0
- DOSBox 0.74.3
- XN Resource Editor Portable 3.0.0.1
- UDB Workbench 3.4.5
- D-Fend Reloaded 1.4.4
- Prey 2.12.2
- Ruby 1.9.3
- TeamTalk SDK Professional Edition 5.11a
- Hex Workshop 6.8.0.5419
Popular Tags
xml
html
decompiler
vb net
dll
tool
java
visual basic
programming
editor
file
visual studio
sql tools
software protection
sql server
edit
sql
database
net
obfuscator
code protection
software
code security
windows
visual
view
sql tool
obfuscation
development
uml
Popular Windows 7 Software
- Simply Fortran 3.41 Build 4438
- dotConnect for MySQL Professional 9.4.290
- PHP 8.5.0
- dotConnect for Oracle Professional Edition 10.4.290
- Miraplacid Text Driver SDK 8.0
- dbForge Documenter for SQL Server 2025.2
- Turbo C++ 3.0
- StyleControls 5.86
- Windows Installer 4.5
- Free OCR C# 2022.8.7804
- Software Ideas Modeler Portable 15.16
- Review Assistant 4.1
- Windows Post-Install 8.7.2
- Software Ideas Modeler Portable x64 14.55
- Software Ideas Modeler 14.66
© 2025 Windows7Download.com - All logos, trademarks, art and other creative works are and remain copyright and property of their respective owners. Microsoft Windows is a registered trademarks of Microsoft Corporation. Microsoft Corporation in no way endorses or is affiliated with windows7download.com.



