Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
Updating version numbers for the release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbisbee committed Nov 18, 2011
1 parent 5a4602a commit 0173c16
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README
@@ -1,7 +1,7 @@
Sag
===

Version 0.7.0
Version 0.7.1
http://www.saggingcouch.com

Sag is a PHP library for working with CouchDB. It is designed to not force any
Expand Down
4 changes: 2 additions & 2 deletions src/Sag.php
Expand Up @@ -22,7 +22,7 @@
/**
* The Sag class provides the core functionality for talking to CouchDB.
*
* @version 0.7.0
* @version 0.7.1
* @package Core
*/
class Sag {
Expand Down Expand Up @@ -1035,7 +1035,7 @@ private function procPacket($method, $url, $data = null, $headers = array()) {

// Build the request packet.
$headers["Host"] = "{$this->host}:{$this->port}";
$headers["User-Agent"] = "Sag/0.7.0";
$headers["User-Agent"] = "Sag/0.7.1";

/*
* This prevents some unRESTful requests, such as inline attachments in
Expand Down
2 changes: 1 addition & 1 deletion src/SagCache.php
Expand Up @@ -25,7 +25,7 @@
* storage).
*
* @package Cache
* @version 0.7.0
* @version 0.7.1
*/
abstract class SagCache {
private $maxSize; //in bytes
Expand Down
2 changes: 1 addition & 1 deletion src/SagConfigurationCheck.php
Expand Up @@ -19,7 +19,7 @@
* a user-level notice message to inform the client of Sag's preferred
* configuration.
*
* @version 0.7.0
* @version 0.7.1
* @package Core
*/
class SagConfigurationCheck {
Expand Down
2 changes: 1 addition & 1 deletion src/SagCouchException.php
Expand Up @@ -21,7 +21,7 @@
* if the requested document isn't found, then the code would be set to "404"
* (string).
*
* @version 0.7.0
* @version 0.7.1
* @package Core
*/
class SagCouchException extends Exception {
Expand Down
2 changes: 1 addition & 1 deletion src/SagException.php
Expand Up @@ -17,7 +17,7 @@
* This exception is thrown when Sag has an internal error, such as an invalid
* type being passed to a function.
*
* @version 0.7.0
* @version 0.7.1
* @package Core
*/
class SagException extends Exception {
Expand Down
2 changes: 1 addition & 1 deletion src/SagFileCache.php
Expand Up @@ -27,7 +27,7 @@
* I/O operations.
*
* @package Cache
* @version 0.7.0
* @version 0.7.1
*/
class SagFileCache extends SagCache {
private static $fileExt = ".sag";
Expand Down
2 changes: 1 addition & 1 deletion src/SagMemoryCache.php
Expand Up @@ -24,7 +24,7 @@
* memory.
*
* @package Cache
* @version 0.7.0
* @version 0.7.1
*/
class SagMemoryCache extends SagCache {
private $cache;
Expand Down
2 changes: 1 addition & 1 deletion src/SagUserUtils.php
Expand Up @@ -19,7 +19,7 @@
* Provides utilities to work with and manage CouchDB users, which wraps the
* Sag class.
*
* @version 0.7.0
* @version 0.7.1
* @package Utils
*/
class SagUserUtils {
Expand Down
2 changes: 1 addition & 1 deletion src/httpAdapters/SagCURLHTTPAdapter.php
Expand Up @@ -4,7 +4,7 @@
* you more advanced features, like SSL supports, with the cost of an
* additional dependency that your shared hosting environment might now have.
*
* @version 0.7.0
* @version 0.7.1
* @package HTTP
*/
class SagCURLHTTPAdapter extends SagHTTPAdapter {
Expand Down
2 changes: 1 addition & 1 deletion src/httpAdapters/SagHTTPAdapter.php
Expand Up @@ -4,7 +4,7 @@
* allowing for different drivers to be used thereby controling your project's
* dependencies.
*
* @version 0.7.0
* @version 0.7.1
* @package HTTP
*/
abstract class SagHTTPAdapter {
Expand Down
2 changes: 1 addition & 1 deletion src/httpAdapters/SagNativeHTTPAdapter.php
Expand Up @@ -5,7 +5,7 @@
*
* This is also the original socket code that was used in Sag.
*
* @version 0.7.0
* @version 0.7.1
* @package HTTP
*/
class SagNativeHTTPAdapter extends SagHTTPAdapter {
Expand Down

0 comments on commit 0173c16

Please sign in to comment.