aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-29 21:12:46 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-29 21:12:46 -0700
commit3a660c05aa99a4bbd0293eebff9d6d4d42560710 (patch)
treed632e6c754e44f3217a8988f0797f9655a9a825d
parentb2ab5ef112f8de507d2db72fdf4a5fa698a954e0 (diff)
parent98681338df32ade2868487fb800af0cef1a30d91 (diff)
downloadcryptography-3a660c05aa99a4bbd0293eebff9d6d4d42560710.tar.gz
cryptography-3a660c05aa99a4bbd0293eebff9d6d4d42560710.tar.bz2
cryptography-3a660c05aa99a4bbd0293eebff9d6d4d42560710.zip
Merge pull request #1370 from reaperhulk/master-open-for-business
open master for seventh release development
-rw-r--r--CHANGELOG.rst5
-rw-r--r--cryptography/__about__.py2
-rw-r--r--vectors/cryptography_vectors/__about__.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index f7e34832..8258279b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
Changelog
=========
+0.7 - `master`_
+~~~~~~~~~~~~~~~
+
+.. note:: This version is not yet released and is under active development.
+
0.6 - 2014-09-29
~~~~~~~~~~~~~~~~
diff --git a/cryptography/__about__.py b/cryptography/__about__.py
index 65c28fb0..77320b95 100644
--- a/cryptography/__about__.py
+++ b/cryptography/__about__.py
@@ -22,7 +22,7 @@ __summary__ = ("cryptography is a package which provides cryptographic recipes"
" and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "0.6"
+__version__ = "0.7.dev1"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"
diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py
index af8ec170..fb89b01c 100644
--- a/vectors/cryptography_vectors/__about__.py
+++ b/vectors/cryptography_vectors/__about__.py
@@ -22,7 +22,7 @@ __summary__ = "Test vectors for the cryptography package."
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "0.6"
+__version__ = "0.7.dev1"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374