Skip to content

Commit

Permalink
AtoM 2.8.0 release update
Browse files Browse the repository at this point in the history
Bumping up version number, and updating links to use the version and
release constants.
  • Loading branch information
anvit committed Jan 8, 2024
1 parent e835e64 commit 1806431
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions admin-manual/installation/ubuntu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ Option 1: Download the tarball

.. code-block:: bash
wget https://storage.accesstomemory.org/releases/atom-2.7.3.tar.gz
wget https://storage.accesstomemory.org/releases/atom-|release|.tar.gz
sudo mkdir /usr/share/nginx/atom
sudo tar xzf atom-2.7.3.tar.gz -C /usr/share/nginx/atom --strip 1
sudo tar xzf atom-|release|.tar.gz -C /usr/share/nginx/atom --strip 1
Please note that the tarball may not be available yet if this version is still
in development. In this case, you can try the alternative installation method
Expand All @@ -260,14 +260,14 @@ Install git:
.. code-block:: bash
sudo mkdir -p /usr/share/nginx/atom
sudo git clone -b stable/2.7.x http://github.com/artefactual/atom.git /usr/share/nginx/atom
sudo git clone -b stable/|version|.x http://github.com/artefactual/atom.git /usr/share/nginx/atom
If you are not interested in downloading all the history from git, you could
also truncate it to a specific number of revisions, e.g.: just one revision

.. code-block:: bash
git clone -b stable/2.7.x --depth 1 http://github.com/artefactual/atom.git /usr/share/nginx/atom
git clone -b stable/|version|.x --depth 1 http://github.com/artefactual/atom.git /usr/share/nginx/atom
We use `Composer`_ to install and manage some third-party PHP libraries. To
install Composer download and run the Composer installer according to the
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

# General information about the project.
project = "AtoM"
copyright = "2020, Artefactual Systems Inc"
copyright = "2024, Artefactual Systems Inc"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -74,7 +74,7 @@
# The short X.Y version.
# version = "2.7"
# The full version, including alpha/beta/rc tags.
release = "2.7.3"
release = "2.8.0"
version = '.'.join(release.split('.')[:2])

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down

0 comments on commit 1806431

Please sign in to comment.