Skip to content

Commit 8755133

Browse files
committed
Merge branch 'fix-release-stuff'
* fix-release-stuff: fix changelog and bump version direnv: fix zip epoch issues with nix-shell and bdist_wheel nix: add twine and wheel packages
2 parents ec0e2d2 + addade7 commit 8755133

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
which nix &>/dev/null && use nix
2+
unset SOURCE_DATE_EPOCH

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [1.38.1] - 2019-05-30
8+
### Fixed
9+
- Changelog
10+
11+
## [1.38.0] - 2019-05-30
812
### Added
913
- Support for python3.7
1014
- `legacy` param to `get_capacity` function

packet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"""library to interact with the Packet API"""
55

6-
__version__ = "1.38.0"
6+
__version__ = "1.38.1"
77
__author__ = "Packet Engineers"
88
__author_email__ = "[email protected]"
99
__license__ = "LGPL v3"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
setup(
5050
name="packet-python",
51-
version="1.38.0",
51+
version="1.38.1",
5252
description="Packet API client",
5353
long_description=long_description,
5454
long_description_content_type="text/markdown",

shell.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ mkShell {
2424
python3Packages.requests
2525
python3Packages.requests-mock
2626
python3Packages.tox
27+
python3Packages.twine
28+
python3Packages.wheel
2729
];
2830
}

0 commit comments

Comments
 (0)