Skip to content

Commit f09caf2

Browse files
authored
Create 0.0.13 Release
### Added - AIREOSDevice methods for disabling and enabling WLANs by ID (`disable_wlans`, `enable_wlans`) - AIREOSDevice properties for getting disabled and enabled WLAN IDs (`disabled_wlans`, `enabled_wlans`) - AIREOSDevice property for getting all WLANs (`wlans`) ### Changed - AIREOSDevice `install_os` method now supports disabling and enabling WLANs before and after install respectively. > Add more commits by pushing to the `[develop](/networktocode/pyntc/tree/develop)` branch on [networktocode/pyntc](/networktocode/pyntc).
2 parents a32a19b + 6a98435 commit f09caf2

File tree

13 files changed

+968
-145
lines changed

13 files changed

+968
-145
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ dist/
1010
.idea/
1111
.vscode/
1212
.pytest_cache/
13+
venv/

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
1313
### Security
1414

1515

16+
## [0.0.13]
17+
### Added
18+
- AIREOSDevice methods for disabling and enabling WLANs by ID (`disable_wlans`, `enable_wlans`)
19+
- AIREOSDevice properties for getting disabled and enabled WLAN IDs (`disabled_wlans`, `enabled_wlans`)
20+
- AIREOSDevice property for getting all WLANs (`wlans`)
21+
### Changed
22+
- AIREOSDevice `install_os` method now supports disabling and enabling WLANs before and after install respectively.
23+
1624
## [0.0.12]
1725
### Added
1826
- AIREOSDevice methods for pre-downloading images to Access Points (``transfer_image_to_ap``)
@@ -21,7 +29,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
2129
- Code format was updated with new `black` release
2230

2331
## [0.0.11]
24-
2532
### Added
2633
- AIREOSDevice property, ``peer_redundancy_state`` for standby device status
2734

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Build Status](https://travis-ci.org/networktocode/pyntc.svg?branch=master)](https://travis-ci.org/networktocode/pyntc)
2-
[![Coverage Status](https://coveralls.io/repos/github/networktocode/pyntc/badge.svg?branch=master)](https://coveralls.io/github/networktocode/pyntc?branch=master)
1+
[![Build Status](https://travis-ci.org/networktocode/pyntc.svg?branch=main)](https://travis-ci.org/networktocode/pyntc)
2+
[![Coverage Status](https://coveralls.io/repos/github/networktocode/pyntc/badge.svg?branch=main)](https://coveralls.io/github/networktocode/pyntc?branch=main)
33

44
# Introduction
55

@@ -356,7 +356,7 @@ tests, and make sure you are a good contributor.
356356

357357
<!-- TODO: Correct/complete documentation. -->
358358

359-
- `master` - Reserved for released code
359+
- `main` - Reserved for released code
360360
- `develop` - Work in progress on the main roadmap
361361
- `<feature>` - Individual feature branches, should be PR'd to `develop`.
362362

0 commit comments

Comments
 (0)