Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AtoM 2.8.0 release update #252

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-2.8.0.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-2.8.0.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/2.8.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/2.8.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
Loading