Skip to content

Commit

Permalink
Publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
brentvatne committed Jun 22, 2023
1 parent df150c8 commit e2e2d23
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 13 deletions.
2 changes: 1 addition & 1 deletion apps/native-component-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"expo-task-manager": "~11.3.0",
"expo-three": "6.0.1",
"expo-tracking-transparency": "~3.1.0",
"expo-updates": "0.17.1",
"expo-updates": "0.18.0",
"expo-video-thumbnails": "~7.4.0",
"expo-web-browser": "~12.3.0",
"fbemitter": "^2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion home/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"expo-permissions": "~14.2.0",
"expo-splash-screen": "~0.20.0",
"expo-task-manager": "~11.3.0",
"expo-updates": "~0.17.0",
"expo-updates": "~0.18.0",
"expo-web-browser": "~12.3.0",
"graphql": "^15.3.0",
"immutable": "^4.0.0",
Expand Down
8 changes: 6 additions & 2 deletions packages/expo-structured-headers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@

### 🐛 Bug fixes

### 💡 Others

## 3.3.0 — 2023-06-22

### 🐛 Bug fixes

- Fixed Android build warnings for Gradle version 8. ([#22537](https://github.com/expo/expo/pull/22537), [#22609](https://github.com/expo/expo/pull/22609) by [@kudo](https://github.com/kudo))
- [iOS] Fix compile issue with native tests on Xcode 14. ([#22845](https://github.com/expo/expo/pull/22845) by [@douglowder](https://github.com/douglowder))

### 💡 Others

## 3.2.0 — 2023-06-21

### 📚 3rd party library updates
Expand Down
4 changes: 2 additions & 2 deletions packages/expo-structured-headers/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'

group = 'host.exp.exponent'
version = '3.2.0'
version = '3.3.0'

buildscript {
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
Expand Down Expand Up @@ -67,7 +67,7 @@ android {
minSdkVersion safeExtGet("minSdkVersion", 21)
targetSdkVersion safeExtGet("targetSdkVersion", 33)
versionCode 1
versionName '3.2.0'
versionName '3.3.0'
}
lintOptions {
abortOnError false
Expand Down
2 changes: 1 addition & 1 deletion packages/expo-structured-headers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "expo-structured-headers",
"version": "3.2.0",
"version": "3.3.0",
"description": "Expo module implementation of a parser based on https://httpwg.org/specs/rfc8941.html",
"main": "index.js",
"keywords": [
Expand Down
4 changes: 4 additions & 0 deletions packages/expo-updates/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

### 💡 Others

## 0.18.0 — 2023-06-22

_This version does not introduce any user-facing changes._

## 0.17.1 — 2023-06-21

### 📚 3rd party library updates
Expand Down
4 changes: 2 additions & 2 deletions packages/expo-updates/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'maven-publish'

group = 'host.exp.exponent'
version = '0.17.1'
version = '0.18.0'

def ex_updates_native_debug = System.getenv("EX_UPDATES_NATIVE_DEBUG") == "1" ? "true" : "false"

Expand Down Expand Up @@ -70,7 +70,7 @@ android {
minSdkVersion safeExtGet("minSdkVersion", 21)
targetSdkVersion safeExtGet("targetSdkVersion", 33)
versionCode 31
versionName '0.17.1'
versionName '0.18.0'
consumerProguardFiles("proguard-rules.pro")
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
4 changes: 2 additions & 2 deletions packages/expo-updates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "expo-updates",
"version": "0.17.1",
"version": "0.18.0",
"description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down Expand Up @@ -46,7 +46,7 @@
"arg": "4.1.0",
"expo-eas-client": "~0.6.0",
"expo-manifests": "~0.7.0",
"expo-structured-headers": "~3.2.0",
"expo-structured-headers": "~3.3.0",
"expo-updates-interface": "~0.10.0",
"fbemitter": "^3.0.0",
"resolve-from": "^5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/expo/bundledNativeModules.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"expo-system-ui": "~2.4.0",
"expo-task-manager": "~11.3.0",
"expo-tracking-transparency": "~3.1.0",
"expo-updates": "~0.17.1",
"expo-updates": "~0.18.0",
"expo-video-thumbnails": "~7.4.0",
"expo-web-browser": "~12.3.0",
"lottie-react-native": "5.1.6",
Expand Down
4 changes: 4 additions & 0 deletions packages/jest-expo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

### 💡 Others

## 49.0.0-alpha.3 — 2023-06-22

_This version does not introduce any user-facing changes._

## 49.0.0-alpha.2 — 2023-06-13

_This version does not introduce any user-facing changes._
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-expo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-expo",
"version": "49.0.0-alpha.2",
"version": "49.0.0-alpha.3",
"description": "A Jest preset to painlessly test your Expo / React Native apps.",
"license": "MIT",
"main": "src",
Expand Down

0 comments on commit e2e2d23

Please sign in to comment.