- Update HISTORY.rst
- Commit the changes:
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
| diff --git a/ast/ast.go b/ast/ast.go | |
| index 8db3b39..f0420f4 100644 | |
| --- a/ast/ast.go | |
| +++ b/ast/ast.go | |
| @@ -2,6 +2,7 @@ package ast | |
| import ( | |
| "bytes" | |
| + "fmt" | |
| "strings" |
| #!/bin/bash | |
| # Script para generar entorno simulado de cluster Swarm con 3 nodos | |
| # Creación de maquina default (se utilizara como cliente ) | |
| # docker-machine create -d virtualbox default | |
| # eval $(docker-machine env default) | |
| # Lanzamos swarm desde maquina default | |
| SWARM_TOKEN=$(docker run swarm create) |
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
| /** | |
| * circuits Component Framework for JavaScript | |
| * | |
| * @module circuits | |
| */ | |
| var EventEmitter = require("events").EventEmitter, | |
| EventManager; |
| """ | |
| Tools for creating a CA cert and signed server certs. | |
| Divined from http://svn.osafoundation.org/m2crypto/trunk/tests/test_x509.py | |
| The mk_temporary_xxx calls return a NamedTemporaryFile with certs. | |
| Usage ; | |
| # Create a temporary CA cert and it's private key | |
| cacert, cakey = mk_temporary_cacert() |
| from shapely.geometry import shape, Point, MultiPoint | |
| import math | |
| import json | |
| def get_bounds(geometries): | |
| """Returns bounding box of geometries. Implementation creates a MultiPoint | |
| from the boxes of all polygons in order to get the result""" | |
| points = [] | |
| for g in geometries: |
| """ https://bitbucket.org/brankovukelic/pyproto """ | |
| from copy import copy | |
| __all__ = ['Object'] | |
| class Object(object): | |
| """Base prototype for prototypal object model in Python | |
| To create a new object, simply instantiate an Object instance:: |