boto3-refresh-session 1.0.30__tar.gz → 1.0.31__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 1.0.30
3
+ Version: 1.0.31
4
4
  Summary: A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically.
5
5
  License: MIT
6
6
  Keywords: boto3,botocore,aws
@@ -50,6 +50,12 @@ Description-Content-Type: text/markdown
50
50
  - [Contributing](https://michaelthomasletts.github.io/boto3-refresh-session/contributing.html)
51
51
  - [Authorization](https://michaelthomasletts.github.io/boto3-refresh-session/authorization.html)
52
52
 
53
+ ## Adoption
54
+
55
+ <p align="center">
56
+ <img src="https://raw.githubusercontent.com/michaelthomasletts/boto3-refresh-session/refs/heads/main/doc/downloads.png" />
57
+ </p>
58
+
53
59
  ## Testimonials
54
60
 
55
61
  From a Cyber Security Engineer at a FAANG company:
@@ -27,6 +27,12 @@
27
27
  - [Contributing](https://michaelthomasletts.github.io/boto3-refresh-session/contributing.html)
28
28
  - [Authorization](https://michaelthomasletts.github.io/boto3-refresh-session/authorization.html)
29
29
 
30
+ ## Adoption
31
+
32
+ <p align="center">
33
+ <img src="https://raw.githubusercontent.com/michaelthomasletts/boto3-refresh-session/refs/heads/main/doc/downloads.png" />
34
+ </p>
35
+
30
36
  ## Testimonials
31
37
 
32
38
  From a Cyber Security Engineer at a FAANG company:
@@ -4,5 +4,5 @@ from . import session
4
4
  from .session import RefreshableSession
5
5
 
6
6
  __all__.extend(session.__all__)
7
- __version__ = "1.0.30"
7
+ __version__ = "1.0.31"
8
8
  __author__ = "Mike Letts"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "1.0.30"
3
+ version = "1.0.31"
4
4
  description = "A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically."
5
5
  authors = [
6
6
  {name = "Mike Letts",email = "lettsmt@gmail.com"}