Skip to content

Commit

Permalink
Fix/release config (#283)
Browse files Browse the repository at this point in the history
Co-authored-by: mparticle-automation <[email protected]>
  • Loading branch information
jared-dickman and mparticle-automation authored Jun 12, 2024
1 parent 9f89fa1 commit 2b63832
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# [1.18.0-fix-release-config.1](https://github.com/mParticle/aquarium/compare/v1.17.0...v1.18.0-fix-release-config.1) (2024-06-12)


### Bug Fixes

* add icons for overview map ([#275](https://github.com/mParticle/aquarium/issues/275)) ([a4bb97d](https://github.com/mParticle/aquarium/commit/a4bb97d42a8a4844b8f5607c69232ba1285d8f2b))
* remove hover effect on active state ([#278](https://github.com/mParticle/aquarium/issues/278)) ([9f89fa1](https://github.com/mParticle/aquarium/commit/9f89fa1b4d338586adca445ada1fa094bdae8208))


### Features

* Add size prop to `Typography.Text` component ([#262](https://github.com/mParticle/aquarium/issues/262)) ([0c14f00](https://github.com/mParticle/aquarium/commit/0c14f00f772255b89d3beb9edd1444c8e71eb877))
* query select number ([#268](https://github.com/mParticle/aquarium/issues/268)) ([13dc864](https://github.com/mParticle/aquarium/commit/13dc86452026fee6caae6d84c686009c0b80660d))
* update design tokens ([#273](https://github.com/mParticle/aquarium/issues/273)) ([ac2b442](https://github.com/mParticle/aquarium/commit/ac2b4421c4a02c1c3e1b0e9dd8f55f8b716dbe44))

# [1.17.0](https://github.com/mParticle/aquarium/compare/v1.16.1...v1.17.0) (2024-06-07)


Expand Down Expand Up @@ -178,4 +193,4 @@

## [1.9.6-dev.1](https://github.com/mParticle/aquarium/compare/v1.9.5...v1.9.6-dev.1) (2024-03-25)

## [1.8.3-dev.3](https://github.com/mParticle/aquarium/compare/v1.8.3-dev.2...v1.8.3-dev.3) (2024-03-20)
## [1.8.3-dev.3](https://github.com/mParticle/aquarium/compare/v1.8.3-dev.2...v1.8.3-dev.3) (2024-03-20)
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mparticle/aquarium",
"version": "1.17.1-query-select-number.1",
"version": "1.18.0-fix-release-config.1",
"description": "mParticle Component Library",
"license": "Apache-2.0",
"keywords": [
Expand Down Expand Up @@ -108,4 +108,4 @@
"dependencies": {
"lodash.clonedeep": "4.5.0"
}
}
}
4 changes: 2 additions & 2 deletions release.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ module.exports = {
{
name: 'chore/*',
channel: 'chore',
prerelease: "${name.split('/').slice(1).join('-').toLowerCase()}"
prerelease: "chore-${name.split('/').slice(1).join('-').toLowerCase()}"
},
{
name: 'fix/*',
channel: 'fix',
prerelease: "${name.split('/').slice(1).join('-').toLowerCase()}"
prerelease: "fix-${name.split('/').slice(1).join('-').toLowerCase()}"
},

],
Expand Down

0 comments on commit 2b63832

Please sign in to comment.