Skip to content

Commit

Permalink
Version Packages (#971)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
connor-baer and github-actions[bot] authored May 8, 2024
1 parent 07cd253 commit ee8ca93
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .changeset/serious-islands-accept.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @sumup/foundry

## 7.2.0

### Minor Changes

> [!WARNING]
> `@sumup/foundry` will be renamed to `@sumup-oss/foundry` in the next major release.
> v7.2 has been published under both names, so you can already migrate by updating the package name in your `package.json` file.
- [#970](https://github.com/sumup-oss/foundry/pull/970) [`07cd253`](https://github.com/sumup-oss/foundry/commit/07cd2534800e8acd9325c8581d05540a4f4f7957) Thanks [@connor-baer](https://github.com/connor-baer)! - Extended the supported version range for `eslint-plugin-jest` to include v28.x.

## 7.1.1

### Patch Changes
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": "@sumup/foundry",
"version": "7.1.1",
"version": "7.2.0",
"description": "A toolkit for JavaScript + TypeScript applications by SumUp.",
"repository": "https://github.com/sumup-oss/foundry",
"author": "Felix Jung <[email protected]>, Connor Bär <[email protected]>",
Expand Down
6 changes: 6 additions & 0 deletions src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@

import yargs from 'yargs';

import * as logger from '../lib/logger';

import { run, RunParams } from './run';
import { init, InitParams } from './init';
import { debug } from './debug';
import { DEFAULT_OPTIONS } from './defaults';

logger.warn(
'`@sumup/foundry` has been renamed to `@sumup-oss/foundry`. Update the package name in your `package.json` file.',
);

// eslint-disable-next-line no-void
void yargs
.command(
Expand Down

0 comments on commit ee8ca93

Please sign in to comment.