From 8aee4088c1e3b11b3ae9e8bf5517e75cdf0a407d Mon Sep 17 00:00:00 2001 From: retrofox Date: Thu, 19 Jan 2023 19:06:30 +0000 Subject: [PATCH] VideoPress: improve buildVideoPressURL(). Add tests. (#28465) * [not verified] handle files.URLs * [not verified] add tests for URL lib * [not verified] buildVideoPressURL() return empty object * change buildVideoPressURL() return value * changelog * escape . in the RegExp * escape the second dot :facepalm: Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/3961439651 --- CHANGELOG.md | 4 ++-- package.json | 2 +- src/class-jetpack-mu-wpcom.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4435abc..3e59e99e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,6 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 0.1.0-alpha - unreleased +## 0.1.0 - 2023-01-19 -This is an alpha version! The changes listed here are not final. +- Testing initial package release. diff --git a/package.json b/package.json index b6b8cbce..2954c949 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom", - "version": "0.1.0-alpha", + "version": "0.1.0", "description": "Enhances your site with features powered by WordPress.com", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/jetpack-mu-wpcom/#readme", "bugs": { diff --git a/src/class-jetpack-mu-wpcom.php b/src/class-jetpack-mu-wpcom.php index 93001286..50b3194c 100644 --- a/src/class-jetpack-mu-wpcom.php +++ b/src/class-jetpack-mu-wpcom.php @@ -14,6 +14,6 @@ */ class Jetpack_Mu_Wpcom { - const PACKAGE_VERSION = '0.1.0-alpha'; + const PACKAGE_VERSION = '0.1.0'; }