Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit a4be461

Browse files
authored
Merge pull request #48 from displague/changelog
defer to the GitHub releases page as the canonical changelog
2 parents 4ba9d3c + fbe7b87 commit a4be461

3 files changed

Lines changed: 24 additions & 65 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @displague

CHANGELOG.md

Lines changed: 1 addition & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1 @@
1-
# Changelog
2-
All notable changes to this project will be documented in this file.
3-
4-
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5-
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6-
7-
## [0.2.2] - 2020-02-24
8-
### Added
9-
- SSH keys cleanup in case the device failed to create.
10-
11-
## [0.2.1] - 2020-02-24
12-
### Added
13-
- Hardware reservation string argument to specift either an ID or 'next-available'
14-
15-
## [0.2.0] - 2019-08-26
16-
### Added
17-
- Replaced dependencies with go modules.
18-
- Several fixes and tweaks.
19-
20-
## [0.1.5] - 2017-11-07
21-
### Added
22-
- Ability to pass plan as either `baremetal_T` or `typeT`
23-
- Verify plan is valid
24-
25-
### Fixed
26-
- Build against latest packngo api break
27-
28-
## [0.1.4] - 2017-07-21
29-
### Added
30-
- Expanded the list of valid OperatingSystems
31-
- Add RancherOS ssh username
32-
- Minor tweaks to Driver structure to be consistent with upstream machine drivers
33-
- Ability to pass in userdata
34-
35-
### Changed
36-
- Default os is now `ubuntu_16_04` instead of `ubuntu_14_04`
37-
- Default plan is now `baremetal_0` instead of `baremetal_1`
38-
39-
## [0.1.3] - 2016-12-30
40-
### Fixed
41-
- Build against latest packngo api break
42-
43-
### Changed
44-
- Update minimum supported version of docker-machine to v0.8.2+
45-
46-
## [0.1.2] - 2016-03-03
47-
### Changed
48-
- 404 responses of a DELETE call are no longer treated as an error
49-
50-
## [0.1.1] - 2016-03-03
51-
### Changed
52-
- Update minimum supported version of docker-machine to v0.5.5+
53-
54-
## [0.1.0] - 2015-12-05
55-
### Fixed
56-
- Local storage of generated ssh keys
57-
58-
## [0.0.2] - 2015-11-19
59-
Nothing done, NOP release.
60-
61-
## [0.0.1] - 2015-11-19
62-
### Added
63-
- Initial release, has basic device creation working
1+
See <https://github.com/packethost/docker-machine-driver-packet/releases>

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,30 @@ sudo make install
7777

7878
Now you will now be able to specify a `-driver` of `packet` to `docker-machine` commands.
7979

80-
### Release
80+
### Debugging
81+
82+
To monitor the Docker debugging details and the Packet API calls:
83+
84+
``sh
85+
go build
86+
PACKNGO_DEBUG=1 PATH=`pwd`:$PATH docker-machine \
87+
--debug create -d packet \
88+
--packet-api-key=$PACKET_TOKEN \
89+
--packet-project-id=$PACKET_PROJECT \
90+
foo
91+
```
92+
93+
### Release Process
94+
95+
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
8196
8297
Releases are handled by [GitHub Workflows](.github/workflows/release.yml) and [goreleaser](.goreleaser.yml).
8398
8499
To push a new release, checkout the commit that you want released and: `make tag version=v0.2.3`. Robots handle the rest.
85100
86-
Releases are archived at <https://github.com/packethost/docker-machine-driver-packet/releases>
101+
Maintainers should verify that the release notes convey to users all of the notable changes between releases, in a human readable way.
102+
The format for each release should be based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
103+
104+
## Releases and Changes
105+
106+
See <https://github.com/packethost/docker-machine-driver-packet/releases> for the latest releases, install archives, and the project changelog.

0 commit comments

Comments
 (0)