Skip to content

Commit

Permalink
chore: Release v3.3.0 (#8376)
Browse files Browse the repository at this point in the history
* chore: Bump package version

* Update CHANGELOG.md

---------

Co-authored-by: edgarrmondragon <edgarrmondragon@users.noreply.github.com>
Co-authored-by: Edgar Ramírez Mondragón <16805946+edgarrmondragon@users.noreply.github.com>
  • Loading branch information
3 people committed Jan 24, 2024
1 parent 17a5224 commit 42f0fc6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Changelog](http://keepachangelog.com/).

## v3.3.0 (2024-01-23)

### ✨ New

- [#8351](https://github.com/meltano/meltano/issues/8351) Warn if select rules are not used on catalog -- _**Thanks @haleemur!**_
- [#8176](https://github.com/meltano/meltano/issues/8176) Add new `--update` flag to `meltano add` to re-add plugins to a project -- _**Thanks @ReubenFrankel!**_
- [#7874](https://github.com/meltano/meltano/issues/7874) Add setting `sensitive` flag -- _**Thanks @ReubenFrankel!**_

### 🐛 Fixes

- [#8365](https://github.com/meltano/meltano/issues/8365) Retain stderr in `meltano config <plugin> test` -- _**Thanks @ReubenFrankel!**_
- [#8354](https://github.com/meltano/meltano/issues/8354) Emit pip installation errors

### ⚡ Performance Improvements

- [#8343](https://github.com/meltano/meltano/issues/8343) Cache `Project.dotenv_env`

### 📚 Documentation Improvements

- [#8306](https://github.com/meltano/meltano/issues/8306) Add changelog updates

## v3.2.0 (2023-12-05)

## v3.2.0rc1 (2023-12-05)
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docs.meltano.com",
"license": "MIT",
"version": "3.3.0rc1",
"version": "3.3.0",
"description": "https://meltano.com",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "meltano"
version = "3.3.0rc1"
version = "3.3.0"
description = "Meltano is your CLI for ELT+: Open Source, Flexible, and Scalable. Move, transform, and test your data with confidence using a streamlined data engineering workflow you’ll love."
authors = ["Meltano <hello@meltano.com>"]
license = "MIT"
Expand Down Expand Up @@ -476,7 +476,7 @@ name = "cz_version_bump"
prerelease_offset = 1
tag_format = "v$major.$minor.$patch$prerelease"
changelog_merge_prerelease = true
version = "3.3.0rc1"
version = "3.3.0"
version_files = [
"pyproject.toml:^version =",
"src/meltano/__init__.py:^__version__ =",
Expand Down
2 changes: 1 addition & 1 deletion src/meltano/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from __future__ import annotations

# Managed by commitizen
__version__ = "3.3.0rc1"
__version__ = "3.3.0"

0 comments on commit 42f0fc6

Please sign in to comment.