Skip to content

Commit 3f458e3

Browse files
authored
Atlas Core: Updating changelogs (#314)
2 parents ee619c1 + 19cc49d commit 3f458e3

4 files changed

Lines changed: 15 additions & 5 deletions

File tree

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Apache License
1+
Apache License
22
Version 2.0, January 2004
33
http://www.apache.org/licenses/
44

@@ -186,7 +186,7 @@ Apache License
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2020 Mendix Technology BV
189+
Copyright 2022 Mendix Technology B.V.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.
@@ -198,4 +198,4 @@ Apache License
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.

packages/atlas-core/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [4.3.4] Atlas Core - 2026-2-25
10+
911
### Fixed
1012

1113
- We fixed an issue with label alignment in Check Box widgets.
12-
- We fixed an issue Text Box widget being stretched when corresponding label is multiline.
14+
- We fixed an issue Text Box widget being stretched when corresponding label is multiline.
1315

1416
## [4.3.3] Atlas Core - 2026-1-30
1517

packages/atlas-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "atlas-core",
33
"moduleName": "Atlas Core",
4-
"version": "4.3.3",
4+
"version": "4.3.4",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2024. All rights reserved.",
77
"repository": {

packages/atlas-core/scripts/build.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,17 @@ async function copyStylesAndAssets(watchMode: boolean, destination: string): Pro
8787
const watchArg = watchMode ? "--watch" : "";
8888

8989
try {
90+
// create version file
9091
const versionFile = join(destination, "themesource", "atlas_core", ".version");
9192
echo("version:");
9293
echo(packageFile.version).to(versionFile);
94+
95+
// create license file
96+
const licenseSource = join(repoRoot, "LICENSE");
97+
const licenseDestination = join(destination, "License.txt");
98+
cp(licenseSource, licenseDestination);
99+
console.info(`Copied LICENSE to ${licenseDestination}`);
100+
93101
await concurrently(
94102
[
95103
{

0 commit comments

Comments
 (0)