Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 1613e41

Browse files
Merge pull request #24 from WhatsApp/v0.0.5-Alpha
Bump version
2 parents f00c17b + 5e0dd52 commit 1613e41

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project are documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.0.5-Alpha] - 2023-04-11
9+
### Added
10+
- Two-step verification API.
11+
- Docs file names match pascal/camel case for each of the APIs.
12+
- Docs for missing types.
13+
- Fix for incorrect parameter name for language object.
14+
15+
### Removed
16+
- Dotenv to be a dev only dependency.
17+
- Typos from docs.
18+
- Unnecessary extra nesting for interactive messages requests.
19+
820
## [0.0.4-Alpha] - 2023-04-05
921

1022
### Added

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "whatsapp",
3-
"version": "0.0.4-Alpha",
3+
"version": "0.0.5-Alpha",
44
"description": "SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta.",
55
"main": "./build/index.js",
66
"types": "./build/index.d.ts",
@@ -16,6 +16,9 @@
1616
"src"
1717
],
1818
"type": "commonjs",
19+
"engines": {
20+
"node": ">=16.19.1"
21+
},
1922
"scripts": {
2023
"start": "ts-node -r tsconfig-paths/register ./src/WhatsApp.ts",
2124
"prebuild": "run-s create-version-file",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
import { semanticVersionString } from './types/version';
1010

11-
export const SDKVersion: semanticVersionString = '0.0.4-Alpha';
11+
export const SDKVersion: semanticVersionString = '0.0.5-Alpha';

0 commit comments

Comments
 (0)