From f950bf4d0ff59acf0f0aebcd6381798123305db0 Mon Sep 17 00:00:00 2001 From: Bincheng Wu Date: Wed, 6 Jul 2022 12:11:29 -0400 Subject: [PATCH 1/2] add refactor change to changelog --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba7c2e89..d4538926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,17 @@ 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). -## [Unreleased] - +## [1.9.0] - 2022-07-06 ### Added - You can now deploy Quarto documents in addition to Quarto projects. This requires RStudio Connect release 2021.08.0 or later. Use `rsconnect deploy quarto` to deploy, or `rsconnect write-manifest quarto` to create a manifest file. +- `RSConnectExecutor` has been added to make developing rsconnect-python APIs easier. +### Changed + +- As a prelude to setting and documenting rsconnect-python APIs, various functions in `actions` have been moved to `bundle`, or replaced with RSConnectExecutor. The moved functions now include a deprecation warning, and will be fully deprecated in a future release. ## [1.8.1] - 2022-05-31 From 61464c5b195000c1cb794d589c19c471d4654813 Mon Sep 17 00:00:00 2001 From: Bincheng Wu Date: Wed, 6 Jul 2022 13:00:50 -0400 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4538926..e97f74cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 requires RStudio Connect release 2021.08.0 or later. Use `rsconnect deploy quarto` to deploy, or `rsconnect write-manifest quarto` to create a manifest file. -- `RSConnectExecutor` has been added to make developing rsconnect-python APIs easier. + ### Changed - As a prelude to setting and documenting rsconnect-python APIs, various functions in `actions` have been moved to `bundle`, or replaced with RSConnectExecutor. The moved functions now include a deprecation warning, and will be fully deprecated in a future release.