Skip to content

Commit 54581f8

Browse files
chore: some fixes
2 parents 345ca14 + a8063f2 commit 54581f8

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release notes
22

3+
## 2.7.0
4+
Feb 20, 2025
5+
6+
- Some fixes
7+
38
## 2.6.0
49
Jul 20, 2023
510

PSCouchDB/PSCouchDB.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
)
2929

3030
# Version number of this module.
31-
ModuleVersion = '2.6.0'
31+
ModuleVersion = '2.7.0'
3232

3333
# Supported PSEditions
3434
# CompatiblePSEditions = @()

PSCouchDB/PSCouchDB.psm1

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class PSCouchDBDocument {
146146
$body.psobject.properties | ForEach-Object {
147147
# Skip attachments
148148
if ($_.Name -eq '_attachments') { return }
149-
if ($_.Name -and $_.Value) {
149+
if ($_.Name -and $null -ne $_.Value) {
150150
$this.SetElement($_.Name, $_.Value)
151151
} else {
152152
$this.SetElement($_.Name)

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# PSCouchDB: Advanced CLI for CouchDB server
2-
<img src="https://pscouchdb.readthedocs.io/en/latest/_images/pscouchdb-logo.svg" alt="PSCouchDB" title="PSCouchDB" width="300" height="300" />
1+
<img src="https://pscouchdb.readthedocs.io/en/latest/_images/pscouchdb-logo.svg" alt="PSCouchDB" align="right" width="150"/> **PSCouchDB**: Advanced CLI for CouchDB server
2+
======
33

44
**Docs**: [ReadTheDocs](https://pscouchdb.readthedocs.io)
55

@@ -73,8 +73,11 @@ Search-CouchDBHelp -Pattern Database | foreach {Get-Help $_.Name}
7373
or see [docs](https://pscouchdb.readthedocs.io/en/latest).
7474
For a little demonstration, see [here](https://asciinema.org/a/232696)
7575

76-
## Licence
77-
This package is [Treeware](https://treeware.earth). If you use it in production, then we ask that you [**buy the world a tree**](https://plant.treeware.earth/MatteoGuadrini/PSCouchDB) to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
76+
## Treeware
77+
78+
This package is [Treeware](https://treeware.earth). If you use it in production,
79+
then we ask that you [**buy the world a tree**](https://plant.treeware.earth/matteoguadrini/PSCouchDB) to thank us for our work.
80+
By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
7881

7982
[![Treeware](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=Treeware&query=%24.total&url=https%3A%2F%2Fpublic.offset.earth%2Fusers%2Ftreeware%2Ftrees)](https://treeware.earth)
8083

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = u'PSCouchDB'
23-
copyright = u'2020, Matteo Guadrini'
23+
copyright = u'2025, Matteo Guadrini'
2424
author = u'Matteo Guadrini'
2525

2626
# The short X.Y version

0 commit comments

Comments
 (0)