Skip to content

Commit e53e94a

Browse files
Merge branch 'main' into feature/msteams
2 parents 9877b9a + bd6b041 commit e53e94a

File tree

39 files changed

+63
-48
lines changed

39 files changed

+63
-48
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# v10.27.1 (Tue May 11 2021)
2+
3+
#### 🐛 Bug Fix
4+
5+
- `@auto-it/slack`
6+
- Remove `text` from non-app authed slack response [#1947](https://github.com/intuit/auto/pull/1947) ([@adierkens](https://github.com/adierkens))
7+
8+
#### Authors: 1
9+
10+
- Adam Dierkens ([@adierkens](https://github.com/adierkens))
11+
12+
---
13+
114
# v10.27.0 (Fri May 07 2021)
215

316
:tada: This release contains work from a new contributor! :tada:

Formula/auto.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
class Auto < Formula
22
desc "Generate releases based on semantic version labels on pull requests."
33
homepage "https://intuit.github.io/auto"
4-
url "https://github.com/intuit/auto/releases/download/v10.27.0/auto-macos.gz"
5-
version "v10.27.0"
6-
sha256 "4ef5f2b7dfffe089ab2d6f0acad6f5f7d74e5acf94119622c101f06464f2c598"
4+
url "https://github.com/intuit/auto/releases/download/v10.27.1/auto-macos.gz"
5+
version "v10.27.1"
6+
sha256 "88ebbb6a91e89111c5b5a601883b5784aefa92ab15ba0d1d50d2fa4a055822e3"
77

88
def install
99
libexec.install Dir["*"]

docs/pages/docs/configuration/non-npm.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex
1111

1212
```bash
1313
# Download a platform specific version of auto
14-
curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.27.0/auto-linux.gz | gunzip > ~/auto
14+
curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.27.1/auto-linux.gz | gunzip > ~/auto
1515
# Make auto executable
1616
chmod a+x ~/auto
1717
```

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "10.27.0",
2+
"version": "10.27.1",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

packages/bot-list/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@auto-it/bot-list",
33
"main": "dist/index.js",
44
"description": "A list of bots for auto plugins to ignore",
5-
"version": "10.27.0",
5+
"version": "10.27.1",
66
"license": "MIT",
77
"author": {
88
"name": "Andrew Lisowski",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "dist/bin/index.js",
55
"types": "dist/index.d.ts",
66
"description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels",
7-
"version": "10.27.0",
7+
"version": "10.27.1",
88
"license": "MIT",
99
"author": {
1010
"name": "Andrew Lisowski",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auto-it/core",
3-
"version": "10.27.0",
3+
"version": "10.27.1",
44
"description": "Node API for using auto.",
55
"main": "dist/auto.js",
66
"license": "MIT",

packages/package-json-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "dist/index.js",
44
"types": "dist/index.d.ts",
55
"description": "Shared utilities for parsing information from a package.json",
6-
"version": "10.27.0",
6+
"version": "10.27.1",
77
"license": "MIT",
88
"author": {
99
"name": "Andrew Lisowski",

plugins/all-contributors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auto-it/all-contributors",
3-
"version": "10.27.0",
3+
"version": "10.27.1",
44
"main": "dist/index.js",
55
"description": "Automatically add contributors as changelogs are produced.",
66
"license": "MIT",

plugins/brew/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auto-it/brew",
3-
"version": "10.27.0",
3+
"version": "10.27.1",
44
"main": "dist/index.js",
55
"description": "Automate the creation of Homebrew formulae.",
66
"license": "MIT",

0 commit comments

Comments
 (0)