Skip to content

Commit 1555c8e

Browse files
author
nitinkr
committed
prepare to replease 1.1.0
1 parent bc56426 commit 1555c8e

File tree

3 files changed

+65
-8
lines changed

3 files changed

+65
-8
lines changed

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
*.py[cod]
2+
3+
# C extensions
4+
*.so
5+
6+
# Packages
7+
*.egg
8+
*.egg-info
9+
dist
10+
build
11+
README
12+
eggs
13+
parts
14+
var
15+
sdist
16+
develop-eggs
17+
.installed.cfg
18+
lib64
19+
env
20+
21+
# Documentation
22+
docs/_build
23+
24+
# Installer logs
25+
pip-log.txt
26+
#
27+
# Unit test / coverage reports
28+
.coverage
29+
.tox
30+
nosetests.xml
31+
tests/unit/cover
32+
33+
# Translations
34+
*.mo
35+
36+
# Mr Developer
37+
.mr.developer.cfg
38+
.project
39+
.pydevproject
40+
41+
MANIFEST
42+
43+
# Testing
44+
.tox
45+
46+
# Vagrant
47+
.vagrant
48+
vagrant_ansible*
49+
50+
# Window File Explorer
51+
desktop.ini
52+
53+
# Mac OS X Finder
54+
.DS_Store
55+
56+
# PyCharm
57+
.idea

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![PyPi Version](https://img.shields.io/pypi/v/jsnapy.svg)](https://pypi.python.org/pypi/jsnapy/) [![Coverage Status](https://travis-ci.org/Juniper/jsnapy.svg?branch=master)](https://travis-ci.org/Juniper/jsnapy)
22

3-
# jsnapy
3+
# JSNAPy
44
Python version of Junos Snapshot Administrator
55

66
Inspired by https://github.com/Juniper/junos-snapshot-administrator
@@ -20,7 +20,7 @@ Installation requires Python 2.7 and associated pip tool
2020
sudo pip install jsnapy
2121
2. Install using pip command from github
2222
sudo pip install git+https://github.com/Juniper/jsnapy.git
23-
3. Updating using pip command
23+
3. Updating using pip command (from github)
2424
sudo pip install -U git+https://github.com/Juniper/jsnapy.git
2525
4. Download or clone the source code from this git repository
2626
git clone https://github.com/Juniper/jsnapy
@@ -62,7 +62,8 @@ To run this test execute following command:
6262
```
6363
1. jsnapy --snap pre -f config_check.yml (for taking pre snapshot)
6464
2. jsnapy --snap post -f config_check.yml (for taking post snapshot after some modification)
65-
3. jsnapy --check pre post -f config_check.yml
65+
3. jsnapy --check pre post -f config_check.yml (compares pre post snapshot as per test cases)
66+
4. jsnapy --diff -f config_check.yml (compares pre post snapshot files, shows the diff in 2 Columns)
6667
```
6768

6869
Output will look something like this:
@@ -118,7 +119,6 @@ CONTRIBUTORS
118119
Juniper Networks is actively contributing to and maintaining this repo. Please contact [email protected] for any queries.
119120

120121
Contributors:
121-
[Priyal Jain] (https://github.com/jainpriyal)
122-
[Nitin Kumar] (https://github.com/vnitinv/)
123-
124122

123+
* v1.0.0: [Priyal Jain](https://github.com/jainpriyal), [Nitin Kumar](https://github.com/vnitinv)
124+
* v1.1.0: [Ishaan Kumar](https://github.com/eeishaan)

lib/jnpr/jsnapy/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# All rights reserved.
66
#
77

8-
__version__ = "1.0.1"
9-
DATE = "2016-Aug-26"
8+
__version__ = "1.1.0"
9+
DATE = "2016-Dec-27"

0 commit comments

Comments
 (0)