Skip to content

Commit

Permalink
Update release version to 2025.1pre
Browse files Browse the repository at this point in the history
2024.2 was never released but the Earth has revolved around the Sun once more.
  • Loading branch information
cgay committed Jan 5, 2025
1 parent ce6ba32 commit fd990ca
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([Open Dylan], [2024.2pre])
AC_INIT([Open Dylan], [2025.1pre])
AC_PREREQ(2.50)

# Directory for config.guess etc.
Expand Down
2 changes: 1 addition & 1 deletion documentation/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
project = 'Open Dylan'
copyright = '2011-2024, Dylan Hackers'
author = 'Dylan Hackers'
release = '2024.2.0'
release = '2025.1.0'


# -- General configuration ---------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ To see the list of registries in the order they will be searched, use the
{personal registry in /tmp/a/x86_64-linux/}
{personal registry in /tmp/b/x86_64-linux/}
{personal registry in /tmp/x/registry/x86_64-linux/}
{personal registry in /opt/opendylan-2024.2/sources/registry/x86_64-linux/}
{personal registry in /opt/opendylan-2025.1/sources/registry/x86_64-linux/}
{personal registry in /tmp/a/generic/}
{personal registry in /tmp/b/generic/}
{personal registry in /tmp/x/registry/generic/}
{personal registry in /opt/opendylan-2024.2/sources/registry/generic/}
{personal registry in /opt/opendylan-2025.1/sources/registry/generic/}
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ System library's operating-system module.

.. constant:: $machine-name

.. deprecated:: 2024.2
.. deprecated:: 2025.1
Use :const:`$machine-architecture` instead.

This constant will be removed in a future release.
Expand Down
2 changes: 1 addition & 1 deletion documentation/source/news/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Release 2023.1
* New ``"""multi-line"""`` and ``#r"raw"`` string literals (`DEP 12
<../proposals/dep-0012-string-literals.rst>`_).
* The ``dylan`` tool (renamed to `deft <https://package.opendylan.org/deft/>`_
in Open Dylan 2024.2) continues to evolve with a new, simplified workspace
in Open Dylan 2025.1) continues to evolve with a new, simplified workspace
model.
* Bug fixes for json, command-line-parser, system, and others.

Expand Down
2 changes: 1 addition & 1 deletion documentation/source/release-notes/2022.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Tooling
=======

* The ``dylan`` command (renamed to <https://github.com/dylan-lang/deft>`_ in
Open Dylan 2024.2) is a new tool to manage Dylan packages and workspaces. It
Open Dylan 2025.1) is a new tool to manage Dylan packages and workspaces. It
provides a centralized catalog of Dylan packages and a way to manage
dependencies without resorting to Git submodules or needing to manually
create registry files.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
*****************

Check warning on line 1 in documentation/source/release-notes/2025.1.rst

View workflow job for this annotation

GitHub Actions / build-documentation (ubuntu-latest)

document isn't included in any toctree
Open Dylan 2024.2
Open Dylan 2025.1
*****************

This document describes the 2024.2 release of Open Dylan, released DD
This document describes the 2025.1 release of Open Dylan, released DD
MMM, 2024. The highlights of the release are listed below. For complete
details see the `commit logs
<https://github.com/dylan-lang/opendylan/compare/v2024.1.0...v2024.2.0>`_ for
<https://github.com/dylan-lang/opendylan/compare/v2024.1.0...v2025.1.0>`_ for
this release.

.. note:: Some commit logs, for example for testworks and other libraries that
Expand Down
2 changes: 1 addition & 1 deletion dylan-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"testworks"
],
"url": "https://github.com/dylan-lang/opendylan",
"version": "2024.2.0",
"version": "2025.1.0",
"license": "DUAL",
"license-url": "https://github.com/dylan-lang/opendylan/blob/master/License.txt"
}
2 changes: 1 addition & 1 deletion sources/lib/release-info/common-info.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ define constant $help-filename = "opendylan.chm";
/// Release constants
define constant $release-product-name = "Open Dylan";
define constant $release-product-identifier = "opendylan";
define constant $release-version = "2024.2pre";
define constant $release-version = "2025.1pre";

define constant $release-copyright
= "Copyright (c) 1997-2004, Functional Objects, Inc.\n"
Expand Down
2 changes: 1 addition & 1 deletion sources/system/unix-operating-system.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ end macro with-storage;
define constant $os-variant = $os-name;
define constant $os-version = "Unknown";

// $machine-name is deprecated as of v2024.2 but is kept for backward compatibility.
// $machine-name is deprecated as of v2025.1 but is kept for backward compatibility.
define constant $machine-name = $machine-architecture;

define constant $command-line-option-prefix = '-';
Expand Down
2 changes: 1 addition & 1 deletion sources/system/x86-win32-operating-system.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ define constant $architecture-little-endian? :: <boolean> = #t;
define constant $machine-architecture = #"x86";
define constant $os-name = #"win32";

// $machine-name is deprecated as of v2024.2 but is kept for backward compatibility.
// $machine-name is deprecated as of v2025.1 but is kept for backward compatibility.
define constant $machine-name = $machine-architecture;

define constant $DWORD_SIZE = raw-as-integer(primitive-word-size());
Expand Down

0 comments on commit fd990ca

Please sign in to comment.