Skip to content

Commit

Permalink
chore: Release v2.6.0 (meltano#6741)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 12, 2022
1 parent fca9ca1 commit b56af55
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 6 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
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/).

## v2.6.0 (2022-09-12)

### ✨ New

- [#5892](https://github.com/meltano/meltano/issues/5892) Add `--interactive` CLI flag in `meltano config set`.
- [#6640](https://github.com/meltano/meltano/issues/6640) Add rich exception formatting, configurable from `logging.yaml`.

### 🐛 Fixes

- [#6694](https://github.com/meltano/meltano/issues/6694) Regression in `meltano remove` with error stating the plugin is missing the `settings_with_extras` attribute.
- [#6652](https://github.com/meltano/meltano/issues/6652) Catch permission errors when creating a new project -- _**Thanks @jakegut!**_
- [#6676](https://github.com/meltano/meltano/issues/6676) Prevent warnings/errors when running `meltano config <plugin> test` -- _**Thanks @ReubenFrankel!**_

### 📚 Documentation Improvements

- [#6706](https://github.com/meltano/meltano/issues/6706) Add troubleshooting page -- _**Thanks @jared-rimmer!**_
- [#6688](https://github.com/meltano/meltano/issues/6688) Add docs about environment variable expansion.
- [#6671](https://github.com/meltano/meltano/issues/6671) Add example meltano projects.
- [#6674](https://github.com/meltano/meltano/issues/6674) Add docs for schedule `env` key.
- [#6680](https://github.com/meltano/meltano/issues/6680) Fix feature flag name for strict env var mode.
- [#6672](https://github.com/meltano/meltano/issues/6672) Add tutorial on how to debug a custom extractor -- _**Thanks @jared-rimmer!**_

## v2.5.0 (2022-08-24)

### ✨ New
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "meltano.com",
"author": "Meltano Team & Contributors <hello@meltano.com>",
"license": "MIT",
"version": "2.5.0",
"version": "2.6.0",
"description": "https://meltano.com",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meltano",
"version": "2.5.0",
"version": "2.6.0",
"private": true,
"scripts": {
"build": "yarn build:docs && yarn build:webapp",
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 = "2.5.0"
version = "2.6.0"
description = "Meltano: Your DataOps Platform Infrastructure"
authors = ["Meltano <hello@meltano.com>"]
license = "MIT"
Expand Down Expand Up @@ -149,7 +149,7 @@ exclude_lines = [

[tool.commitizen]
name = "cz_version_bump"
version = "2.5.0"
version = "2.6.0"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:^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 @@ -4,4 +4,4 @@
from __future__ import annotations

# Managed by commitizen
__version__ = "2.5.0"
__version__ = "2.6.0"
2 changes: 1 addition & 1 deletion src/webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meltano-webapp",
"version": "2.5.0",
"version": "2.6.0",
"private": true,
"scripts": {
"dev": "npm run serve",
Expand Down

0 comments on commit b56af55

Please sign in to comment.