Skip to content
Closed
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
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ Unreleased
Any changes which are committed, but not yet present in a released
version, should appear here.

1.11.0 - Wed, Aug 6, 2025
-------------------------

This release contains a number of small fixes and improvements.

- Updated zsh completions with some newer options. Contributed by @rpigott,
thank you again!
- Allow specifying a task named "-" which clears out any tasks indicated by your
instance profile.
- Removed the use of the progress bar when only acting on one instance.
- The "yo resize" command now can change the memory and cpu of a flex shape.
Though, beware that some resizes are not permitted with flex shapes, see `the
docs
<https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/resizinginstances.htm>`__
for details.
- Fixed a bug in "yo volume rename" that made it fail on block volumes.
- Fixed some instances of importing ``pkg_resources`` on Python 3.12+ which
trigger a deprecation warning.

1.10.0 - Wed, Apr 9, 2025
-------------------------

Expand Down
5 changes: 4 additions & 1 deletion buildrpm/yo.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2025, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
Name: yo
Version: 1.10.0
Version: 1.11.0
Release: 0%{?dist}
Summary: A fast and simple CLI client for managing OCI instances

Expand Down Expand Up @@ -60,6 +60,9 @@ cp README.* %{buildroot}/%{_docdir}/yo/


%changelog
* Wed Aug 6 2025 Stephen Brennan <stephen.s.brennan@oracle.com> - 1.11.0-0
- Update to 1.11.0, see documentation for details

* Wed Apr 9 2025 Stephen Brennan <stephen.s.brennan@oracle.com> - 1.10.0-0
- Update to 1.10.0, see documentation for details

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@

long_description = open("README.md").read()

VERSION = "1.10.0"
# Do not forget to update buildrpm/yo.spec, and CHANGELOG.md
VERSION = "1.11.0"

additional_requires = [] # type: ignore

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# SOFTWARE.

[tox]
envlist = py37,py38,py39,py310,py311
envlist = py37,py38,py39,py310,py311,py312,py313
skip_missing_interpreters = true

[testenv]
Expand Down