Skip to content

Commit

Permalink
Fix mistake in exporting createproject script version number
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Jan 15, 2025
1 parent 201beb4 commit c928a67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.5.2: 2025-01-15

* Fix mistake in exporting createproject script version number

### 2.5.1: 2025-01-09

* Bump WordPress to 6.7.1
Expand Down
2 changes: 1 addition & 1 deletion bin/tasks/header.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ else
fi

# Get dudestack version from composer.json
DUDEDESTACK_VERSION=$(grep '"version":' composer.json | cut -d'"' -f4)
DUDEDESTACK_VERSION=$(grep -m 1 '"version":' composer.json | cut -d'"' -f4)

# Get version date from CHANGELOG.md
DUDESTACK_DATE=$(grep '^### ' CHANGELOG.md | head -n 1 | cut -d' ' -f3)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "digitoimistodude/dudestack",
"type": "project",
"version": "2.5.1",
"version": "2.5.2",
"license": "MIT",
"description": "A modern WordPress stack",
"homepage": "https://github.com/digitoimistodude/dudestack",
Expand Down

0 comments on commit c928a67

Please sign in to comment.