Skip to content

Commit

Permalink
v2.0.6 :hammer
Browse files Browse the repository at this point in the history
* Prepare for new release
* Remove caching for pip packages
  • Loading branch information
RobertoPrevato authored Dec 9, 2023
1 parent 3e35824 commit f6d6fbc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: actions/cache@v1
id: depcache
with:
path: deps
key: requirements-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}

- name: Download dependencies
if: steps.depcache.outputs.cache-hit != 'true'
run: |
pip download --dest=deps -r requirements.txt
- name: Install dependencies
run: |
pip install -U --no-index --find-links=deps deps/*
pip install -r requirements.txt
- name: Run tests
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.6] - 2023-12-09 :hammer:
- Fixes import for Protocols support regardless of Python version (partially
broken for Python 3.9), by @fennel-akunesh

## [2.0.5] - 2023-11-25 :lab_coat:
- Adds support for resolving `Protocol` classes even when they don't define an
`__init__` method, by @lucas-labs
Expand Down
2 changes: 1 addition & 1 deletion rodi/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.5"
__version__ = "2.0.6"

0 comments on commit f6d6fbc

Please sign in to comment.