Skip to content

Commit

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

Co-authored-by: edgarrmondragon <16805946+edgarrmondragon@users.noreply.github.com>
  • Loading branch information
MeltyBot and edgarrmondragon committed Mar 6, 2024
1 parent c4b7eeb commit 36e8bc4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
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.2 (2024-03-06)

### 🐛 Fixes

- [#8436](https://github.com/meltano/meltano/issues/8436) Terminal output from plugin installation is now safely decoded
- [#8381](https://github.com/meltano/meltano/issues/8381) Print `Plugin definition is already locked` to stdout instead of stderr
- [#8399](https://github.com/meltano/meltano/issues/8399) Handle non-UTF-8 lines in plugin output for logging -- _**Thanks @nkclemson!**_

### 📚 Documentation Improvements

- [#8434](https://github.com/meltano/meltano/issues/8434) Added a note about using the `--require-virtualenv` flag for installing Meltano with pip
- [#8433](https://github.com/meltano/meltano/issues/8433) Removed some stale references to the old API

## v3.3.1 (2024-01-26)

### 🐛 Fixes
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.1",
"version": "3.3.2",
"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.1"
version = "3.3.2"
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 @@ -469,7 +469,7 @@ name = "cz_version_bump"
prerelease_offset = 1
tag_format = "v$major.$minor.$patch$prerelease"
changelog_merge_prerelease = true
version = "3.3.1"
version = "3.3.2"
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.1"
__version__ = "3.3.2"

0 comments on commit 36e8bc4

Please sign in to comment.